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-06-10 17:40:13 +0300
committerAnna Henningsen <anna@addaleax.net>2018-07-13 20:53:15 +0300
commit57e301539bff2599974b7269a56377330c9b730e (patch)
tree6f5c866728f22bbacb8dadb89a2c8a12e5b66508 /src/tty_wrap.h
parent36cc5f5caf52af895079d153a9131fe2b0c6b8f9 (diff)
src: enable more detailed memory tracking
This will enable more detailed heap snapshots based on a newer V8 API. This commit itself is not tied to that API and could be backported. PR-URL: https://github.com/nodejs/node/pull/21742 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/tty_wrap.h')
-rw-r--r--src/tty_wrap.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tty_wrap.h b/src/tty_wrap.h
index 91b07a570e9..cca5650ddb3 100644
--- a/src/tty_wrap.h
+++ b/src/tty_wrap.h
@@ -38,7 +38,9 @@ class TTYWrap : public LibuvStreamWrap {
uv_tty_t* UVHandle();
- size_t self_size() const override { return sizeof(*this); }
+ void MemoryInfo(MemoryTracker* tracker) const override {
+ tracker->TrackThis(this);
+ }
private:
TTYWrap(Environment* env,