Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b5bc6bd

Browse filesBrowse files
wcohenMylesBorins
authored andcommitted
src: fix 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. PR-URL: #20152 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matheus Marchini <matheus@sthima.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
1 parent b239591 commit b5bc6bd
Copy full SHA for b5bc6bd

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎src/node.stp‎

Copy file name to clipboardExpand all lines: src/node.stp
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ probe node_gc_start = process("node").mark("gc__start")
125125
flags);
126126
}
127127

128-
probe node_gc_stop = process("node").mark("gc__stop")
128+
probe node_gc_stop = process("node").mark("gc__done")
129129
{
130130
scavenge = 1 << 0;
131131
compact = 1 << 1;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.