perkeep/pkg/osutil/restart_windows.go

18 lines
351 B
Go
Raw Normal View History

// +build windows
// TODO(mpl): Copyright in next CL.
package osutil
import (
"log"
)
// restartProcess returns an error if things couldn't be
// restarted. On success, this function never returns
// because the process becomes the new process.
func RestartProcess() error {
log.Print("RestartProcess not implemented on windows")
return nil
}