★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/789798bedfNouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
src: add get/set pair for env context awareness
PR-URL: #35024
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
codebytere authored and richardlau committed Sep 7, 2020
1 parent 73ef3f2 commit 789798bedf760451a2b61bee51f3890950f44fee
Showing with 12 additions and 1 deletion.
  1. +8 −0 src/env-inl.h
  2. +3 −0 src/env.h
  3. +1 −1 src/node_binding.cc
@@ -542,6 +542,14 @@ inline bool Environment::abort_on_uncaught_exception() const {
return options_->abort_on_uncaught_exception;
}

inline void Environment::set_force_context_aware(bool value) {
options_->force_context_aware = value;
}

inline bool Environment::force_context_aware() const {
return options_->force_context_aware;
}

inline void Environment::set_abort_on_uncaught_exception(bool value) {
options_->abort_on_uncaught_exception = value;
}
@@ -947,6 +947,9 @@ class Environment : public MemoryRetainer {
void PrintSyncTrace() const;
inline void set_trace_sync_io(bool value);

inline void set_force_context_aware(bool value);
inline bool force_context_aware() const;

// This stores whether the --abort-on-uncaught-exception flag was passed
// to Node.
inline bool abort_on_uncaught_exception() const;
@@ -461,7 +461,7 @@ void DLOpen(const FunctionCallbackInfo<Value>& args) {

if (mp != nullptr) {
if (mp->nm_context_register_func == nullptr) {
if (env->options()->force_context_aware) {
if (env->force_context_aware()) {
dlib->Close();
THROW_ERR_NON_CONTEXT_AWARE_DISABLED(env);
return false;

0 comments on commit 789798b

Please sign in to comment.