Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.cc')
-rw-r--r--src/node.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/node.cc b/src/node.cc
index 7a949adfb59..356dc732dd6 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -2832,13 +2832,6 @@ void SetupProcessObject(Environment* env,
READONLY_PROPERTY(process, "traceDeprecation", True(env->isolate()));
}
- // --trace-sync-io
- if (trace_sync_io) {
- READONLY_PROPERTY(process, "traceSyncIO", True(env->isolate()));
- // Don't env->set_trace_sync_io(true) because it will be enabled
- // after LoadEnvironment() has run.
- }
-
size_t exec_path_len = 2 * PATH_MAX;
char* exec_path = new char[exec_path_len];
Local<String> exec_path_value;