waitstatus_others.go 143 B

1234567891011
  1. // +build !windows
  2. package client
  3. import (
  4. "syscall"
  5. )
  6. func newWaitStatus(ws uint32) syscall.WaitStatus {
  7. return syscall.WaitStatus(ws)
  8. }