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
committerMyles Borins <mylesborins@google.com>2020-01-16 09:38:53 +0300
commit4259afe583a06f180a843d9559f8327c3c095ff1 (patch)
tree22c1102deda186cc539ea1fa13f6b45d463701d1 /src/node.h
parent6050236c3dfa22fd152bfa62e008e8db0d558e1f (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 e410068e45d..9e35b66ff41 100644
--- a/src/node.h
+++ b/src/node.h
@@ -389,7 +389,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);