diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-19 09:35:50 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-19 09:35:50 +0200 |
| commit | e4c32963e5fdf1d00fd4ac9fc21425fdea318739 (patch) | |
| tree | 97e768b9766345612df07497ba2321f13c1f5d5a /systemtap/src | |
| parent | 2e73e8906e5ba3f81578f1700f7478c94c92acb8 (diff) | |
fix: preserve final capture tokens in parser (task 465)
Diffstat (limited to 'systemtap/src')
| -rw-r--r-- | systemtap/src/ioriot.stp | 2 | ||||
| -rw-r--r-- | systemtap/src/javaioriot.stp | 2 | ||||
| -rw-r--r-- | systemtap/src/targetedioriot.stp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/systemtap/src/ioriot.stp b/systemtap/src/ioriot.stp index 307aae5..1e12574 100644 --- a/systemtap/src/ioriot.stp +++ b/systemtap/src/ioriot.stp @@ -368,7 +368,7 @@ probe syscall.readahead { probe syscall.readahead.return { if(execname() != "stapio") { ns = gettimeofday_ns() - printf("t=%ld;:,D=%ld;:,i=%d:%d;:,o=%s;:,d=%d;:,b=%ld;:,O=%ld;:,c=%ld\n", + printf("t=%ld;:,D=%ld;:,i=%d:%d;:,o=%s;:,d=%d;:,b=%ld;:,O=%ld;:,c=%ld;:,\n", ns, ns-PROBE_ENTRY_TIMES[tid(),name], pid(), tid(), name, ENTRY_FD[tid(),name], diff --git a/systemtap/src/javaioriot.stp b/systemtap/src/javaioriot.stp index 0f8dd09..3d54b19 100644 --- a/systemtap/src/javaioriot.stp +++ b/systemtap/src/javaioriot.stp @@ -368,7 +368,7 @@ probe syscall.readahead { probe syscall.readahead.return { if(execname() == "java") { ns = gettimeofday_ns() - printf("t=%ld;:,D=%ld;:,i=%d:%d;:,o=%s;:,d=%d;:,b=%ld;:,O=%ld;:,c=%ld\n", + printf("t=%ld;:,D=%ld;:,i=%d:%d;:,o=%s;:,d=%d;:,b=%ld;:,O=%ld;:,c=%ld;:,\n", ns, ns-PROBE_ENTRY_TIMES[tid(),name], pid(), tid(), name, ENTRY_FD[tid(),name], diff --git a/systemtap/src/targetedioriot.stp b/systemtap/src/targetedioriot.stp index e383757..b93b21c 100644 --- a/systemtap/src/targetedioriot.stp +++ b/systemtap/src/targetedioriot.stp @@ -368,7 +368,7 @@ probe syscall.readahead { probe syscall.readahead.return { if(pid() == target()) { ns = gettimeofday_ns() - printf("t=%ld;:,D=%ld;:,i=%d:%d;:,o=%s;:,d=%d;:,b=%ld;:,O=%ld;:,c=%ld\n", + printf("t=%ld;:,D=%ld;:,i=%d:%d;:,o=%s;:,d=%d;:,b=%ld;:,O=%ld;:,c=%ld;:,\n", ns, ns-PROBE_ENTRY_TIMES[tid(),name], pid(), tid(), name, ENTRY_FD[tid(),name], |
