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>
This commit is contained in:
Anna Henningsen 2017-08-24 20:47:00 +02:00 committed by James M Snell
parent 65c9537adc
commit 095c9463dd

View File

@ -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) {