Skip to content

Commit

Permalink
src: remove traceSyncIO property from process
Browse files Browse the repository at this point in the history
PR-URL: #2143
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
bmeck authored and bnoordhuis committed Jul 9, 2015
1 parent 2ba1740 commit 6bef15a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/node.cc
Expand Up @@ -2837,13 +2837,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;
Expand Down

0 comments on commit 6bef15a

Please sign in to comment.