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

17 lines
326 B
Go

package debugger
import (
"fmt"
)
func attachErrorMessage(pid int, err error) error {
return fmt.Errorf("could not attach to pid %d: %s", pid, err)
}
func stopProcess(pid int) error {
// We cannot gracefully stop a process on Windows,
// so just ignore this request and let `Detach` kill
// the process.
return nil
}