mirror of https://github.com/perkeep/perkeep.git
18 lines
351 B
Go
18 lines
351 B
Go
// +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
|
|
}
|