Skip to content

Commit c0075c7

Browse files
bmeckmscdex
authored andcommitted
src: remove traceSyncIO property from process
PR-URL: nodejs#2143 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
1 parent c38b8a4 commit c0075c7

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/node.cc

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2832,13 +2832,6 @@ void SetupProcessObject(Environment* env,
28322832
READONLY_PROPERTY(process, "traceDeprecation", True(env->isolate()));
28332833
}
28342834

2835-
// --trace-sync-io
2836-
if (trace_sync_io) {
2837-
READONLY_PROPERTY(process, "traceSyncIO", True(env->isolate()));
2838-
// Don't env->set_trace_sync_io(true) because it will be enabled
2839-
// after LoadEnvironment() has run.
2840-
}
2841-
28422835
size_t exec_path_len = 2 * PATH_MAX;
28432836
char* exec_path = new char[exec_path_len];
28442837
Local<String> exec_path_value;

0 commit comments

Comments
 (0)