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

     1  //go:build (freebsd && amd64) || darwin
     2  // +build freebsd,amd64 darwin
     3  
     4  package native
     5  
     6  import (
     7  	"github.com/undoio/delve/pkg/elfwriter"
     8  	"github.com/undoio/delve/pkg/proc"
     9  )
    10  
    11  func (p *nativeProcess) MemoryMap() ([]proc.MemoryMapEntry, error) {
    12  	return nil, proc.ErrMemoryMapNotSupported
    13  }
    14  
    15  func (p *nativeProcess) DumpProcessNotes(notes []elfwriter.Note, threadDone func()) (threadsDone bool, notesout []elfwriter.Note, err error) {
    16  	return false, notes, nil
    17  }