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:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-03-11 19:42:31 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2019-03-19 16:00:48 +0300
commit9868d544119409750231d4a5ff94a356385b126d (patch)
tree6cfbf191dc5a505b6f34c4a62878224b91d5f011 /src/node_worker.h
parent927f29d244e95a38816c305d82d290bd10b5938b (diff)
worker: create per-Environment message port after bootstrap
PR-URL: https://github.com/nodejs/node/pull/26593 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_worker.h')
-rw-r--r--src/node_worker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_worker.h b/src/node_worker.h
index adc755426d0..9510faafe64 100644
--- a/src/node_worker.h
+++ b/src/node_worker.h
@@ -50,7 +50,7 @@ class Worker : public AsyncWrap {
private:
void OnThreadStopped();
-
+ void CreateEnvMessagePort(Environment* env);
const std::string url_;
std::shared_ptr<PerIsolateOptions> per_isolate_opts_;