mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 02:36:18 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package proc
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| // TODO(darwin)
 | |
| func (dbp *Process) setHardwareBreakpoint(reg, tid int, addr uint64) error {
 | |
| 	return fmt.Errorf("not implemented on darwin")
 | |
| }
 | |
| 
 | |
| // TODO(darwin)
 | |
| func (dbp *Process) clearHardwareBreakpoint(reg, tid int) error {
 | |
| 	return fmt.Errorf("not implemented on darwin")
 | |
| }
 | 
