diff options
| author | Paul Buetow <paul@buetow.org> | 2025-03-23 14:06:34 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-03-23 14:06:34 +0200 |
| commit | acb50fbc6f5ea2b97613593c7aea21304f3fb459 (patch) | |
| tree | c3de35dbf87a8a4733f43873a25378d9c1766869 /internal/eventloop.go | |
| parent | 5417e99f8e54121cddbff9296131e7f0fb1001a9 (diff) | |
add flags from fdinfo info
add other warning about vanished pid
Diffstat (limited to 'internal/eventloop.go')
| -rw-r--r-- | internal/eventloop.go | 4 |
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?") } } } |
