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:
authorAnna Henningsen <anna@addaleax.net>2018-05-27 17:37:30 +0300
committerAnna Henningsen <anna@addaleax.net>2018-05-31 10:54:48 +0300
commitbd85844c4e80c7aa1fc02a986c7619c3956b0061 (patch)
treed476c4d0b3469dfee41913b9a76ff39ab1deabfe /src/async_wrap.h
parenteadcee11372d8228bcb203a9ab97a5f7d61d4809 (diff)
src: implement debug output utilities
Implement utilities for easier debugging of Node.js core code, inspired by the HTTP/2 debugging code. Debugging is, however, implemented at runtime rather than at compile time, controlled through a new `NODE_DEBUG_NATIVE=categories` environment variable. The runtime overhead in the debugging-disabled case amounts to 1 well-cachable one-byte read per debug call. PR-URL: https://github.com/nodejs/node/pull/20987 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/async_wrap.h')
-rw-r--r--src/async_wrap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/async_wrap.h b/src/async_wrap.h
index 17017ab602c..451bcfe12e6 100644
--- a/src/async_wrap.h
+++ b/src/async_wrap.h
@@ -167,6 +167,7 @@ class AsyncWrap : public BaseObject {
v8::Local<v8::Value>* argv);
virtual size_t self_size() const = 0;
+ virtual std::string diagnostic_name() const;
static void WeakCallback(const v8::WeakCallbackInfo<DestroyParam> &info);