1
0
mirror of https://github.com/beego/bee.git synced 2024-07-02 15:14:13 +00:00
bee/vendor/github.com/derekparker/delve/pkg/proc/ptrace_windows.go
2017-03-19 23:48:59 +01:00

14 lines
210 B
Go

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))
}