Commit 5b1b70177e for perl
commit 5b1b70177e28add85237196002e9b7b7b3182e3e
Author: Sevan Janiyan <venture37@geeklan.co.uk>
Date: Tue Sep 22 20:48:17 2026 +0100
perldtrace.pod: correct probe names
diff --git a/pod/perldtrace.pod b/pod/perldtrace.pod
index 27b2d0169e..0b72dc3f2c 100644
--- a/pod/perldtrace.pod
+++ b/pod/perldtrace.pod
@@ -72,7 +72,7 @@ refer to the subroutine that is being invoked; there is currently
no way to get ahold of any information about the subroutine's
I<caller> from a DTrace action.
- :*perl*::sub-entry {
+ perl*:::sub-entry {
printf("%s::%s entered at %s line %d\n",
copyinstr(arg3), copyinstr(arg0), copyinstr(arg1), arg2);
}
@@ -84,7 +84,7 @@ refer to the subroutine that is returning; there is currently no
way to get ahold of any information about the subroutine's I<caller>
from a DTrace action.
- :*perl*::sub-return {
+ perl*:::sub-return {
printf("%s::%s returned at %s line %d\n",
copyinstr(arg3), copyinstr(arg0), copyinstr(arg1), arg2);
}
@@ -96,7 +96,7 @@ as tracing changes to Perl's C<${^GLOBAL_PHASE}> variable, especially
since the values for C<NEWPHASE> and C<OLDPHASE> are the strings that
C<${^GLOBAL_PHASE}> reports.
- :*perl*::phase-change {
+ perl*:::phase-change {
printf("Phase changed from %s to %s\n",
copyinstr(arg1), copyinstr(arg0));
}
@@ -108,7 +108,7 @@ is fired before the opcode is executed. When the Perl debugger is
enabled, the DTrace probe is fired I<after> the debugger hooks (but
still before the opcode itself is executed).
- :*perl*::op-entry {
+ perl*:::op-entry {
printf("About to execute opcode %s\n", copyinstr(arg0));
}
@@ -119,7 +119,7 @@ C<use>, C<require>, or C<do>. This probe fires before the file is
read from disk. The filename argument is converted to local filesystem
paths instead of providing C<Module::Name>-style names.
- :*perl*:loading-file {
+ perl*:::loading-file {
printf("About to load %s\n", copyinstr(arg0));
}
@@ -131,7 +131,7 @@ is read from disk and its contents evaluated. The filename argument
is converted to local filesystem paths instead of providing
C<Module::Name>-style names.
- :*perl*:loaded-file {
+ perl*:::loaded-file {
printf("Successfully loaded %s\n", copyinstr(arg0));
}