github.com/dnephin/dobi@v0.15.0/tasks/job/signal_windows.go (about)

     1  package job
     2  
     3  import (
     4  	"os"
     5  	"syscall"
     6  )
     7  
     8  // SIGWINCH does not exist on windows, create a fake signal
     9  const SIGWINCH = syscall.Signal(0xffffff)
    10  
    11  func initWindow(chanSig chan<- os.Signal) {
    12  }