delve/proctl/breakpoints_darwin_amd64.go

14 lines
279 B
Go
Raw Normal View History

2015-01-14 02:37:10 +00:00
package proctl
import "errors"
2015-01-14 02:37:10 +00:00
// TODO(darwin)
func setHardwareBreakpoint(reg, tid int, addr uint64) error {
return errors.New("not implemented on darwin")
2015-01-14 02:37:10 +00:00
}
// TODO(darwin)
func clearHardwareBreakpoint(reg, tid int) error {
return errors.New("not implemented on darwin")
2015-01-14 02:37:10 +00:00
}