mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00

This was done with something along the lines of: ``` mv internal/test testutil pushd testutil/; grep -IRl "package test" | xargs -I '{}' sed -i -e 's|package test|package testutil|g' {}; popd mv internal/testutil/*.go testutil/ && rm -rf internal/ grep -IRl "github.com\/docker\/docker\/internal\/test" | xargs -I '{}' sed -i -e 's|github.com/docker/docker/internal/test|github.com/docker/docker/test|g' {} goimports . ``` I also modified the basic plugin path in testutil/fixtures/plugin. Signed-off-by: Sam Whited <sam@samwhited.com>
32 lines
775 B
Go
32 lines
775 B
Go
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"golang.org/x/sys/windows"
|
|
"gotest.tools/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 cleanupNetworkNamespace(t testingT, execRoot string) {
|
|
}
|
|
|
|
// CgroupNamespace returns the cgroup namespace the daemon is running in
|
|
func (d *Daemon) CgroupNamespace(t assert.TestingT) string {
|
|
assert.Assert(t, false)
|
|
return "cgroup namespaces are not supported on Windows"
|
|
}
|