Files
delve/proc/ptrace_windows.go
Luke Hoban bddb712a6b Add support for Windows.
Fixes #198.
2016-01-20 19:06:31 -08:00

14 lines
217 B
Go

package proc
import (
"fmt"
)
func PtraceAttach(pid int) error {
return fmt.Errorf("not implemented: PtraceAttach")
}
func PtraceDetach(tid, sig int) error {
return fmt.Errorf("not implemented: PtraceDetach")
}