mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-29 01:27:16 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build (freebsd && amd64) || darwin
 | |
| // +build freebsd,amd64 darwin
 | |
| 
 | |
| package native
 | |
| 
 | |
| import (
 | |
| 	"github.com/go-delve/delve/pkg/elfwriter"
 | |
| 	"github.com/go-delve/delve/pkg/proc"
 | |
| )
 | |
| 
 | |
| func (p *nativeProcess) MemoryMap() ([]proc.MemoryMapEntry, error) {
 | |
| 	return nil, proc.ErrMemoryMapNotSupported
 | |
| }
 | |
| 
 | |
| func (p *nativeProcess) DumpProcessNotes(notes []elfwriter.Note, threadDone func()) (threadsDone bool, notesout []elfwriter.Note, err error) {
 | |
| 	return false, notes, nil
 | |
| }
 | 
