delve/proc/breakpoints_darwin_amd64.go

14 lines
320 B
Go
Raw Normal View History

2015-06-12 19:49:23 +00:00
package proc
2015-01-14 02:37:10 +00:00
2015-05-04 22:31:13 +00:00
import "fmt"
2015-01-14 02:37:10 +00:00
// TODO(darwin)
func (dbp *DebuggedProcess) setHardwareBreakpoint(reg, tid int, addr uint64) error {
2015-05-04 22:31:13 +00:00
return fmt.Errorf("not implemented on darwin")
2015-01-14 02:37:10 +00:00
}
// TODO(darwin)
func (dbp *DebuggedProcess) clearHardwareBreakpoint(reg, tid int) error {
2015-05-04 22:31:13 +00:00
return fmt.Errorf("not implemented on darwin")
2015-01-14 02:37:10 +00:00
}