delve/pkg/proc/native/dump_linux_other.go
2023-10-03 08:50:11 -07:00

12 lines
265 B
Go

//go:build linux && !amd64
package native
import (
"github.com/go-delve/delve/pkg/elfwriter"
)
func (p *nativeProcess) DumpProcessNotes(notes []elfwriter.Note, threadDone func()) (threadsDone bool, out []elfwriter.Note, err error) {
return false, notes, nil
}