mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 10:17:53 +00:00
Support podman service sighup reload configuration files(containers.conf, registries.conf, storage.conf). Signed-off-by: Qi Wang <qiwan@redhat.com>
14 lines
161 B
Go
14 lines
161 B
Go
// +build windows
|
|
|
|
package utils
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
// Platform specific signal synonyms
|
|
var (
|
|
SIGHUP os.Signal = windows.SIGHUP
|
|
)
|