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:
authorBen Noordhuis <info@bnoordhuis.nl>2020-01-07 16:18:56 +0300
committerAnna Henningsen <anna@addaleax.net>2020-01-09 18:50:27 +0300
commitcd4a41c92ed55fe71234f59362e4a334a3c43174 (patch)
tree622ac927b32f121f8a0713fe44240b53dc40758f /src/node.h
parent93b0e39ce2bbbf35c0e77e6d4b8e0e2d909d21c4 (diff)
src: remove node::InitializeV8Platform()
This API method was introduced in commit 90ae4bd0c9 ("src: add InitializeV8Platform function") from July 2018 but wasn't properly exported and therefore not usable on Windows or with shared library builds. The motivation from the commit log is mainly about making it easier to wire up the cctests and there are better ways to do that. Refs: https://github.com/nodejs/node/pull/31217 PR-URL: https://github.com/nodejs/node/pull/31245 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/node.h b/src/node.h
index d43693c0338..00b0c0ea7e4 100644
--- a/src/node.h
+++ b/src/node.h
@@ -401,7 +401,6 @@ NODE_EXTERN MultiIsolatePlatform* GetMainThreadMultiIsolatePlatform();
NODE_EXTERN MultiIsolatePlatform* CreatePlatform(
int thread_pool_size,
node::tracing::TracingController* tracing_controller);
-MultiIsolatePlatform* InitializeV8Platform(int thread_pool_size);
NODE_EXTERN void FreePlatform(MultiIsolatePlatform* platform);
NODE_EXTERN void EmitBeforeExit(Environment* env);