From 1c5a7b98c390ffd273d25ef58a86b70c149409eb Mon Sep 17 00:00:00 2001 From: William Cohen Date: Thu, 19 Apr 2018 10:15:25 -0400 Subject: [PATCH] Use the correct user-space marker for SystemTap node_gc_stop probe The process("node").mark("gc__stop") is actually process("node").mark("gc__done"). Use the proper name so that a developer can use SystemTap to determine the duration of garbage collection. --- src/node.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.stp b/src/node.stp index 3369968c205146..ebc40d574fc2be 100644 --- a/src/node.stp +++ b/src/node.stp @@ -125,7 +125,7 @@ probe node_gc_start = process("node").mark("gc__start") flags); } -probe node_gc_stop = process("node").mark("gc__stop") +probe node_gc_stop = process("node").mark("gc__done") { scavenge = 1 << 0; compact = 1 << 1;