1234567891011121314151617181920212223242526272829303132333435363738 |
- package daemon
- import (
- "fmt"
- "os/exec"
- "strconv"
- "testing"
- "golang.org/x/sys/windows"
- "gotest.tools/v3/assert"
- )
- // 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 cleanupMount(_ testing.TB, _ *Daemon) {}
- func cleanupNetworkNamespace(_ testing.TB, _ *Daemon) {}
- // CgroupNamespace returns the cgroup namespace the daemon is running in
- func (d *Daemon) CgroupNamespace(t testing.TB) string {
- assert.Assert(t, false)
- return "cgroup namespaces are not supported on Windows"
- }
- func setsid(cmd *exec.Cmd) {
- }
|