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:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-03-23 02:39:52 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2019-04-06 07:01:45 +0300
commit864860e9f3d4eed0b0b81af55197d7e525ea6306 (patch)
treeed0c9cbc1cea99323cd4fa4c5385a11b262be8ee /src/node_perf.h
parentbaa54a5ae78ff04a3e8d8ac97c052304a6f6c18c (diff)
src: port coverage serialization to C++
This patch moves the serialization of coverage profiles into C++. With this we no longer need to patch `process.reallyExit` and hook into the exit events, but instead hook into relevant places in C++ which are safe from user manipulation. This also makes the code easier to reuse for other types of profiles. PR-URL: https://github.com/nodejs/node/pull/26874 Reviewed-By: Ben Coe <bencoe@gmail.com>
Diffstat (limited to 'src/node_perf.h')
-rw-r--r--src/node_perf.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/node_perf.h b/src/node_perf.h
index a8e43dc3476..2e77c6f25ef 100644
--- a/src/node_perf.h
+++ b/src/node_perf.h
@@ -25,8 +25,6 @@ using v8::Value;
extern const uint64_t timeOrigin;
-double GetCurrentTimeInMicroseconds();
-
static inline const char* GetPerformanceMilestoneName(
enum PerformanceMilestone milestone) {
switch (milestone) {