mirror of
				https://github.com/go-delve/delve.git
				synced 2025-11-01 03:42:59 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			217 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			217 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package proc
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| )
 | |
| 
 | |
| func PtraceAttach(pid int) error {
 | |
| 	return fmt.Errorf("not implemented: PtraceAttach")
 | |
| }
 | |
| 
 | |
| func PtraceDetach(tid, sig int) error {
 | |
| 	return fmt.Errorf("not implemented: PtraceDetach")
 | |
| }
 | 
