summaryrefslogtreecommitdiff
path: root/internal/eventloop_exit.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-21 11:39:18 +0300
committerPaul Buetow <paul@buetow.org>2026-05-21 11:39:18 +0300
commitc58aa139f5e7252aefb1bcacb5fa8b9ea8cdcdef (patch)
tree09ae5323e06a3a0b5ade451f1b8e4b9efccb4561 /internal/eventloop_exit.go
parenta0d6f222864301c11afd9c1d3306e6bfe8446d5d (diff)
n7 classify pidfd and misc tail syscalls
Diffstat (limited to 'internal/eventloop_exit.go')
-rw-r--r--internal/eventloop_exit.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/eventloop_exit.go b/internal/eventloop_exit.go
index d00fe04..df2e557 100644
--- a/internal/eventloop_exit.go
+++ b/internal/eventloop_exit.go
@@ -518,6 +518,8 @@ func eventfdDescriptorName(traceID types.TraceId, flags int32) string {
return fmt.Sprintf("signalfd:%d", flags)
case types.SYS_ENTER_TIMERFD_CREATE:
return fmt.Sprintf("timerfd:%d", flags)
+ case types.SYS_ENTER_PIDFD_OPEN:
+ return fmt.Sprintf("pidfd:%d", flags)
default:
return fmt.Sprintf("eventfd:%d", flags)
}