aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/env-inl.h2
-rw-r--r--src/env.cc3
-rw-r--r--src/env.h1
-rw-r--r--src/node.cc2
4 files changed, 2 insertions, 6 deletions
diff --git a/src/env-inl.h b/src/env-inl.h
index 2e0c4c5d1c..508501909a 100644
--- a/src/env-inl.h
+++ b/src/env-inl.h
@@ -416,7 +416,7 @@ inline void Environment::set_printed_error(bool value) {
}
inline void Environment::set_trace_sync_io(bool value) {
- trace_sync_io_ = value;
+ options_->trace_sync_io = value;
}
inline bool Environment::abort_on_uncaught_exception() const {
diff --git a/src/env.cc b/src/env.cc
index a12502773a..a2145ab46b 100644
--- a/src/env.cc
+++ b/src/env.cc
@@ -132,7 +132,6 @@ Environment::Environment(IsolateData* isolate_data,
tick_info_(context->GetIsolate()),
timer_base_(uv_now(isolate_data->event_loop())),
printed_error_(false),
- trace_sync_io_(false),
abort_on_uncaught_exception_(false),
emit_env_nonstring_warning_(true),
makecallback_cntr_(0),
@@ -351,7 +350,7 @@ void Environment::StopProfilerIdleNotifier() {
}
void Environment::PrintSyncTrace() const {
- if (!trace_sync_io_)
+ if (!options_->trace_sync_io)
return;
HandleScope handle_scope(isolate());
diff --git a/src/env.h b/src/env.h
index fa802e4016..df56194501 100644
--- a/src/env.h
+++ b/src/env.h
@@ -913,7 +913,6 @@ class Environment {
TickInfo tick_info_;
const uint64_t timer_base_;
bool printed_error_;
- bool trace_sync_io_;
bool abort_on_uncaught_exception_;
bool emit_env_nonstring_warning_;
size_t makecallback_cntr_;
diff --git a/src/node.cc b/src/node.cc
index 0589608614..f13e33330e 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -3052,8 +3052,6 @@ inline int Start(Isolate* isolate, IsolateData* isolate_data,
env.async_hooks()->pop_async_id(1);
}
- env.set_trace_sync_io(env.options()->trace_sync_io);
-
{
SealHandleScope seal(isolate);
bool more;