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 <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
addaleax authored and MylesBorins committed Sep 12, 2017
1 parent ae91b1e commit e3f5c58
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 e3f5c58

Please sign in to comment.