1
0
mirror of https://github.com/beego/bee.git synced 2025-02-17 00:47:03 +00:00

14 lines
210 B
Go
Raw Normal View History

2017-03-19 23:45:54 +01:00
package proc
import (
"fmt"
)
func PtraceAttach(pid int) error {
return fmt.Errorf("not implemented: PtraceAttach")
}
func PtraceDetach(tid, sig int) error {
return _DebugActiveProcessStop(uint32(tid))
}