summaryrefslogtreecommitdiff
path: root/src/node_binding.cc
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2019-03-09 09:28:04 +0100
committerJames M Snell <jasnell@gmail.com>2019-03-12 14:19:36 +0000
commitf9ddbb6b2f2ff61bb62a4ee8a8819d561322c9e8 (patch)
tree3e761d0fd70523fbf801520fa1e3863548f32169 /src/node_binding.cc
parentf2064dfc1fee2daa0537bc27d79d5aa0f734faaf (diff)
downloadandroid-node-v8-f9ddbb6b2f2ff61bb62a4ee8a8819d561322c9e8.tar.gz
android-node-v8-f9ddbb6b2f2ff61bb62a4ee8a8819d561322c9e8.tar.bz2
android-node-v8-f9ddbb6b2f2ff61bb62a4ee8a8819d561322c9e8.zip
lib: move DTRACE_* probes out of global scope
The DTRACE_* probes have been global for no really good reason. Move those into an internalBinding. PR-URL: https://github.com/nodejs/node/pull/26541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Matheus Marchini <mat@mmarchini.me> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'src/node_binding.cc')
-rw-r--r--src/node_binding.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/node_binding.cc b/src/node_binding.cc
index 9599cf956b..123bdad418 100644
--- a/src/node_binding.cc
+++ b/src/node_binding.cc
@@ -28,6 +28,12 @@
#define NODE_BUILTIN_PROFILER_MODULES(V)
#endif
+#if HAVE_DTRACE || HAVE_ETW
+#define NODE_BUILTIN_DTRACE_MODULES(V) V(dtrace)
+#else
+#define NODE_BUILTIN_DTRACE_MODULES(V)
+#endif
+
// A list of built-in modules. In order to do module registration
// in node::Init(), need to add built-in modules in the following list.
// Then in binding::RegisterBuiltinModules(), it calls modules' registration
@@ -85,7 +91,8 @@
NODE_BUILTIN_OPENSSL_MODULES(V) \
NODE_BUILTIN_ICU_MODULES(V) \
NODE_BUILTIN_REPORT_MODULES(V) \
- NODE_BUILTIN_PROFILER_MODULES(V)
+ NODE_BUILTIN_PROFILER_MODULES(V) \
+ NODE_BUILTIN_DTRACE_MODULES(V)
// This is used to load built-in modules. Instead of using
// __attribute__((constructor)), we call the _register_<modname>