mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Windows: psignal alias not required
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
4afeabfdad
commit
59d8878558
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ import (
|
|||
"syscall"
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
psignal "github.com/docker/docker/pkg/signal"
|
||||
"github.com/docker/docker/pkg/signal"
|
||||
"github.com/docker/docker/pkg/system"
|
||||
)
|
||||
|
||||
|
@ -23,7 +23,7 @@ func setupDumpStackTrap() {
|
|||
logrus.Debugf("Stackdump - waiting signal at %s", ev)
|
||||
for {
|
||||
syscall.WaitForSingleObject(h, syscall.INFINITE)
|
||||
psignal.DumpStacks()
|
||||
signal.DumpStacks()
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
|
Loading…
Add table
Reference in a new issue