mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 18:57:18 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build linux && !amd64
 | |
| // +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
 | |
| }
 | 
