12 lines
260 B
Go
12 lines
260 B
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
|
||
|
}
|