Skip to content

Commit 2b6a0f8

Browse files
committed
src: remove the tracing module entirely
PR-URL: #124 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent e96100f commit 2b6a0f8

File tree

9 files changed

+1
-253
lines changed

9 files changed

+1
-253
lines changed

β€Ždoc/api/all.markdownβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@
3535
@include debugger
3636
@include cluster
3737
@include smalloc
38-
@include tracing

β€Ždoc/api/tracing.markdownβ€Ž

Lines changed: 0 additions & 66 deletions
This file was deleted.

β€Žlib/repl.jsβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ exports.writer = util.inspect;
7474
exports._builtinLibs = ['assert', 'buffer', 'child_process', 'cluster',
7575
'crypto', 'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'https', 'net',
7676
'os', 'path', 'punycode', 'querystring', 'readline', 'stream',
77-
'string_decoder', 'tls', 'tty', 'url', 'util', 'vm', 'zlib', 'smalloc',
78-
'tracing'];
77+
'string_decoder', 'tls', 'tty', 'url', 'util', 'vm', 'zlib', 'smalloc'];
7978

8079

8180
function REPLServer(prompt, stream, eval_, useGlobal, ignoreUndefined) {

β€Žlib/tracing.jsβ€Ž

Lines changed: 0 additions & 65 deletions
This file was deleted.

β€Žnode.gypβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
'lib/string_decoder.js',
5858
'lib/sys.js',
5959
'lib/timers.js',
60-
'lib/tracing.js',
6160
'lib/tls.js',
6261
'lib/_tls_common.js',
6362
'lib/_tls_legacy.js',

β€Žsrc/node.jsβ€Ž

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@
4242

4343
process.EventEmitter = EventEmitter; // process.EventEmitter is deprecated
4444

45-
// Setup the tracing module
46-
NativeModule.require('tracing')._nodeInitialization(process);
47-
4845
// do this good and early, since it handles errors.
4946
startup.processFatal();
5047

β€Žtest/simple/test-v8-flags.jsβ€Ž

Lines changed: 0 additions & 26 deletions
This file was deleted.

β€Žtest/simple/test-v8-gc.jsβ€Ž

Lines changed: 0 additions & 53 deletions
This file was deleted.

β€Žtest/simple/test-v8-stats.jsβ€Ž

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
Β (0)