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)
|
2015-06-13 04:47:30 +00:00
|
|
|
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)
|
2015-06-13 04:47:30 +00:00
|
|
|
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
|
|
|
}
|