1
0
mirror of https://github.com/beego/bee.git synced 2024-06-01 04:03:27 +00:00
bee/vendor/github.com/derekparker/delve/service/debugger/debugger_darwin.go
2017-03-19 23:48:59 +01:00

16 lines
286 B
Go

package debugger
import (
"fmt"
sys "golang.org/x/sys/unix"
)
func attachErrorMessage(pid int, err error) error {
//TODO: mention certificates?
return fmt.Errorf("could not attach to pid %d: %s", pid, err)
}
func stopProcess(pid int) error {
return sys.Kill(pid, sys.SIGSTOP)
}