Skip to content

Commit

Permalink
perf_hooks: fix presumed typo in node_perf.cc
Browse files Browse the repository at this point in the history
PR-URL: #15019
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
  • Loading branch information
addaleax authored and MylesBorins committed Sep 11, 2017
1 parent 4800ab5 commit 0d8cba3
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 0d8cba3

Please sign in to comment.