restartableprocess_windows.go 335 B

1234567891011121314151617
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. // The testrestartableprocesses is a program for a test.
  4. package main
  5. import (
  6. "golang.org/x/sys/windows"
  7. )
  8. func init() {
  9. register("RestartableProcess", RestartableProcess)
  10. }
  11. func RestartableProcess() {
  12. windows.SleepEx(windows.INFINITE, false)
  13. }