summaryrefslogtreecommitdiff
path: root/internal/eventloop.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-23 14:06:34 +0200
committerPaul Buetow <paul@buetow.org>2025-03-23 14:06:34 +0200
commitacb50fbc6f5ea2b97613593c7aea21304f3fb459 (patch)
treec3de35dbf87a8a4733f43873a25378d9c1766869 /internal/eventloop.go
parent5417e99f8e54121cddbff9296131e7f0fb1001a9 (diff)
add flags from fdinfo info
add other warning about vanished pid
Diffstat (limited to 'internal/eventloop.go')
-rw-r--r--internal/eventloop.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/eventloop.go b/internal/eventloop.go
index 60ea01a..ae3f887 100644
--- a/internal/eventloop.go
+++ b/internal/eventloop.go
@@ -171,7 +171,9 @@ func (e *eventLoop) syscallEnter(enterEv event.Event) {
// Only, when we have a comm name
if _, ok := e.comms[tid]; ok {
e.enterEvs[tid] = event.NewPair(enterEv)
- // TODO } else { .... what if not? }
+ } else {
+ // Probably not an issue.
+ fmt.Println("WARN: No comm name for", enterEv, "process probably already vanished?")
}
}
}