14 lines
276 B
Go
14 lines
276 B
Go
![]() |
package proctl
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
// TODO(darwin)
|
||
|
func setHardwareBreakpoint(reg, tid int, addr uint64) error {
|
||
|
return fmt.Errorf("not implemented on darwin")
|
||
|
}
|
||
|
|
||
|
// TODO(darwin)
|
||
|
func clearHardwareBreakpoint(reg, tid int) error {
|
||
|
return fmt.Errorf("not implemented on darwin")
|
||
|
}
|