Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
perf_hooks: fix presumed typo in node_perf.cc
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#15019
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
addaleax authored and Olivia Hugger committed Aug 30, 2017
1 parent ecbd645 commit b1f61ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_perf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit b1f61ef

Please sign in to comment.