gitlab.com/Raven-IO/raven-delve@v1.22.4/pkg/proc/native/dump_other.go (about)

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