2017-04-21 06:55:53 +00:00
|
|
|
package native
|
2016-01-15 05:26:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
func PtraceAttach(pid int) error {
|
|
|
|
return fmt.Errorf("not implemented: PtraceAttach")
|
|
|
|
}
|
|
|
|
|
|
|
|
func PtraceDetach(tid, sig int) error {
|
2016-09-12 18:16:41 +00:00
|
|
|
return _DebugActiveProcessStop(uint32(tid))
|
2016-01-15 05:26:54 +00:00
|
|
|
}
|