Skip to content

Commit 30fd3d2

Browse files
committed
src: Remove lttng support.
This cleans up and removes lttng support completely. Recent discussion on a PR to deprecate lttng suggested that we remove it completely pending feedback from the TSC. This should be considered a non breaking change, as a recent PR reveals that compiling with this system has been broken for nearly two years. Refs: #18971 Refs: #18975 Refs: #18945 PR-URL: #18982 Reviewed-By: Tiancheng "Timothy" Gu <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jackson Tian <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 38eb0fa commit 30fd3d2

16 files changed

+1
-613
lines changed

.eslintrc.js

-6
Original file line numberDiff line numberDiff line change
@@ -263,12 +263,6 @@ module.exports = {
263263
DTRACE_HTTP_SERVER_RESPONSE: false,
264264
DTRACE_NET_SERVER_CONNECTION: false,
265265
DTRACE_NET_STREAM_END: false,
266-
LTTNG_HTTP_CLIENT_REQUEST: false,
267-
LTTNG_HTTP_CLIENT_RESPONSE: false,
268-
LTTNG_HTTP_SERVER_REQUEST: false,
269-
LTTNG_HTTP_SERVER_RESPONSE: false,
270-
LTTNG_NET_SERVER_CONNECTION: false,
271-
LTTNG_NET_STREAM_END: false,
272266
internalBinding: false,
273267
},
274268
};

configure

-14
Original file line numberDiff line numberDiff line change
@@ -383,11 +383,6 @@ parser.add_option('--with-dtrace',
383383
dest='with_dtrace',
384384
help='build with DTrace (default is true on sunos and darwin)')
385385

386-
parser.add_option('--with-lttng',
387-
action='store_true',
388-
dest='with_lttng',
389-
help='build with Lttng (Only supported on Linux)')
390-
391386
parser.add_option('--with-etw',
392387
action='store_true',
393388
dest='with_etw',
@@ -908,15 +903,6 @@ def configure_node(o):
908903
else:
909904
o['variables']['node_use_dtrace'] = 'false'
910905

911-
# Enable Lttng if --with-lttng was defined. Use logic similar to
912-
# ETW for windows. Lttng is only available on the Linux platform.
913-
if flavor == 'linux':
914-
o['variables']['node_use_lttng'] = b(options.with_lttng)
915-
elif options.with_lttng:
916-
raise Exception('lttng is only supported on Linux.')
917-
else:
918-
o['variables']['node_use_lttng'] = 'false'
919-
920906
if options.no_ifaddrs:
921907
o['defines'] += ['SUNOS_NO_IFADDRS']
922908

deps/node-inspect/.eslintrc

-6
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,3 @@ globals:
139139
DTRACE_HTTP_SERVER_RESPONSE: false
140140
DTRACE_NET_SERVER_CONNECTION: false
141141
DTRACE_NET_STREAM_END: false
142-
LTTNG_HTTP_CLIENT_REQUEST: false
143-
LTTNG_HTTP_CLIENT_RESPONSE: false
144-
LTTNG_HTTP_SERVER_REQUEST: false
145-
LTTNG_HTTP_SERVER_RESPONSE: false
146-
LTTNG_NET_SERVER_CONNECTION: false
147-
LTTNG_NET_STREAM_END: false

doc/guides/contributing/pull-requests.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ A good commit message should describe what changed and why.
146146

147147
Examples:
148148
- `net: add localAddress and localPort to Socket`
149-
- `src: fix typos in node_lttng_provider.h`
149+
- `src: fix typos in async_wrap.h`
150150

151151

152152
2. Keep the second line blank.

lib/_http_client.js

-2
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ util.inherits(ClientRequest, OutgoingMessage);
254254

255255
ClientRequest.prototype._finish = function _finish() {
256256
DTRACE_HTTP_CLIENT_REQUEST(this, this.connection);
257-
LTTNG_HTTP_CLIENT_REQUEST(this, this.connection);
258257
COUNTER_HTTP_CLIENT_REQUEST();
259258
OutgoingMessage.prototype._finish.call(this);
260259
};
@@ -511,7 +510,6 @@ function parserOnIncomingClient(res, shouldKeepAlive) {
511510
}
512511

513512
DTRACE_HTTP_CLIENT_RESPONSE(socket, req);
514-
LTTNG_HTTP_CLIENT_RESPONSE(socket, req);
515513
COUNTER_HTTP_CLIENT_RESPONSE();
516514
req.res = res;
517515
res.req = req;

lib/_http_server.js

-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ util.inherits(ServerResponse, OutgoingMessage);
135135

136136
ServerResponse.prototype._finish = function _finish() {
137137
DTRACE_HTTP_SERVER_RESPONSE(this.connection);
138-
LTTNG_HTTP_SERVER_RESPONSE(this.connection);
139138
COUNTER_HTTP_SERVER_RESPONSE();
140139
OutgoingMessage.prototype._finish.call(this);
141140
};
@@ -611,7 +610,6 @@ function parserOnIncoming(server, socket, state, req, keepAlive) {
611610

612611
res.shouldKeepAlive = keepAlive;
613612
DTRACE_HTTP_SERVER_REQUEST(req, socket);
614-
LTTNG_HTTP_SERVER_REQUEST(req, socket);
615613
COUNTER_HTTP_SERVER_REQUEST();
616614

617615
if (socket._httpMessage) {

lib/net.js

-2
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,6 @@ Socket.prototype._read = function(n) {
506506
Socket.prototype.end = function(data, encoding, callback) {
507507
stream.Duplex.prototype.end.call(this, data, encoding, callback);
508508
DTRACE_NET_STREAM_END(this);
509-
LTTNG_NET_STREAM_END(this);
510509
return this;
511510
};
512511

@@ -1579,7 +1578,6 @@ function onconnection(err, clientHandle) {
15791578
socket._server = self;
15801579

15811580
DTRACE_NET_SERVER_CONNECTION(socket);
1582-
LTTNG_NET_SERVER_CONNECTION(socket);
15831581
COUNTER_NET_SERVER_CONNECTION(socket);
15841582
self.emit('connection', socket);
15851583
}

node.gyp

-17
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
'v8_use_snapshot%': 'false',
44
'v8_trace_maps%': 0,
55
'node_use_dtrace%': 'false',
6-
'node_use_lttng%': 'false',
76
'node_use_etw%': 'false',
87
'node_use_perfctr%': 'false',
98
'node_no_browser_globals%': 'false',
@@ -530,19 +529,6 @@
530529
}],
531530
],
532531
}],
533-
[ 'node_use_lttng=="true"', {
534-
'defines': [ 'HAVE_LTTNG=1' ],
535-
'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ],
536-
'libraries': [ '-llttng-ust' ],
537-
'include_dirs': [
538-
'src',
539-
'tools/msvs/genfiles',
540-
'<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h
541-
],
542-
'sources': [
543-
'src/node_lttng.cc'
544-
],
545-
}],
546532
[ 'node_use_dtrace=="true"', {
547533
'defines': [ 'HAVE_DTRACE=1' ],
548534
'dependencies': [
@@ -736,9 +722,6 @@
736722
[ 'node_use_dtrace=="false" and node_use_etw=="false"', {
737723
'inputs': [ 'src/notrace_macros.py' ]
738724
}],
739-
[ 'node_use_lttng=="false"', {
740-
'inputs': [ 'src/nolttng_macros.py' ]
741-
}],
742725
[ 'node_use_perfctr=="false"', {
743726
'inputs': [ 'src/noperfctr_macros.py' ]
744727
}]

src/node.cc

-8
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@
4949
#include "node_dtrace.h"
5050
#endif
5151

52-
#if defined HAVE_LTTNG
53-
#include "node_lttng.h"
54-
#endif
55-
5652
#include "ares.h"
5753
#include "async_wrap-inl.h"
5854
#include "env-inl.h"
@@ -3340,10 +3336,6 @@ void LoadEnvironment(Environment* env) {
33403336
InitDTrace(env, global);
33413337
#endif
33423338

3343-
#if defined HAVE_LTTNG
3344-
InitLTTNG(env, global);
3345-
#endif
3346-
33473339
#if defined HAVE_PERFCTR
33483340
InitPerfCounters(env, global);
33493341
#endif

0 commit comments

Comments
 (0)