
- move native backend to pkg/proc/native - move gdbserver backend to pkg/proc/gdbserial - move core dumps backend to pkg/proc/core
14 lines
212 B
Go
14 lines
212 B
Go
package native
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func PtraceAttach(pid int) error {
|
|
return fmt.Errorf("not implemented: PtraceAttach")
|
|
}
|
|
|
|
func PtraceDetach(tid, sig int) error {
|
|
return _DebugActiveProcessStop(uint32(tid))
|
|
}
|