delve/pkg/proc/native/ptrace_windows.go

14 lines
212 B
Go
Raw Normal View History

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 {
return _DebugActiveProcessStop(uint32(tid))
2016-01-15 05:26:54 +00:00
}