gitlab.com/Raven-IO/raven-delve@v1.22.4/pkg/proc/native/dump_linux_other.go (about) 1 //go:build linux && !amd64 2 3 package native 4 5 import ( 6 "gitlab.com/Raven-IO/raven-delve/pkg/elfwriter" 7 ) 8 9 func (p *nativeProcess) DumpProcessNotes(notes []elfwriter.Note, threadDone func()) (threadsDone bool, out []elfwriter.Note, err error) { 10 return false, notes, nil 11 }