diff options
| -rw-r--r-- | TODO.md | 7 | ||||
| -rw-r--r-- | internal/eventloop.go | 2 |
2 files changed, 0 insertions, 9 deletions
@@ -1,12 +1,5 @@ # TODO's -* Target OS is Rocky 9 and not Rocky 8 (can use a bhyve VM) -* More filters - * By syscall -* Capture more tracepoints? See comments in tracepoints.c's header. -* Automatic testing (integration tests) -* Performance benchmark... - ## FlameGraphs More ideas diff --git a/internal/eventloop.go b/internal/eventloop.go index d78997f..555a8f8 100644 --- a/internal/eventloop.go +++ b/internal/eventloop.go @@ -192,8 +192,6 @@ func (e *eventLoop) syscallExit(exitEv event.Event, ch chan<- *event.Pair) { openEv := ev.EnterEv.(*OpenEvent) fd := int32(ev.ExitEv.(*RetEvent).Ret) - // It's from an array, so only create string from array until first 0 byte - // TODO: This could speed up the path filter as well file := file.NewFd(fd, openEv.Filename[:], v.Flags) if fd >= 0 { e.files[fd] = file |
