blob: 6f1238d4dd5ae13debcfce3240531d0e5bf1b3b0 [file] [log] [blame] [edit]
// Copyright 2020 Marc-Antoine Ruel. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
//go:build windows
package main
import "golang.org/x/sys/windows"
func sysHang() {
// 49.7 days is enough for everyone.
windows.SleepEx(0xFFFFFFFF, false)
}