github.com/undoio/delve@v1.9.0/pkg/proc/native/dump_linux_other.go (about)

     1  //go:build linux && !amd64
     2  // +build linux,!amd64
     3  
     4  package native
     5  
     6  import (
     7  	"github.com/undoio/delve/pkg/elfwriter"
     8  )
     9  
    10  func (p *nativeProcess) DumpProcessNotes(notes []elfwriter.Note, threadDone func()) (threadsDone bool, out []elfwriter.Note, err error) {
    11  	return false, notes, nil
    12  }