mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e942513ac4
Use CreateEvent, OpenEvent (which both map to the respective *EventW function) and PulseEvent from golang.org/x/sys instead of local copies. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
26 lines
554 B
Go
26 lines
554 B
Go
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/go-check/check"
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
// SignalDaemonDump sends a signal to the daemon to write a dump file
|
|
func SignalDaemonDump(pid int) {
|
|
ev, _ := windows.UTF16PtrFromString("Global\\docker-daemon-" + strconv.Itoa(pid))
|
|
h2, err := windows.OpenEvent(0x0002, false, ev)
|
|
if h2 == 0 || err != nil {
|
|
return
|
|
}
|
|
windows.PulseEvent(h2)
|
|
}
|
|
|
|
func signalDaemonReload(pid int) error {
|
|
return fmt.Errorf("daemon reload not supported")
|
|
}
|
|
|
|
func cleanupExecRoot(c *check.C, execRoot string) {
|
|
}
|