Browse Source

perf_hooks: fix presumed typo in node_perf.cc

PR-URL: https://github.com/nodejs/node/pull/15019
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
canary-base
Anna Henningsen 7 years ago
committed by James M Snell
parent
commit
095c9463dd
  1. 2
      src/node_perf.cc

2
src/node_perf.cc

@ -224,7 +224,7 @@ inline void MarkGarbageCollectionEnd(Isolate* isolate,
inline void SetupGarbageCollectionTracking(Isolate* isolate) {
isolate->AddGCPrologueCallback(MarkGarbageCollectionStart);
isolate->AddGCPrologueCallback(MarkGarbageCollectionEnd);
isolate->AddGCEpilogueCallback(MarkGarbageCollectionEnd);
}
inline Local<Value> GetName(Local<Function> fn) {

Loading…
Cancel
Save