rfyiamcool opened a new pull request, #568:
URL: https://github.com/apache/dubbo-go-samples/pull/568

   ## what
   
   `os.Interrupt` is the same signal as `syscall.SIGINT`.
   
   go code: `/usr/local/go/src/os/exec_posix.go`
   
   ```go
   // The only signal values guaranteed to be present in the os package on all
   // systems are os.Interrupt (send the process an interrupt) and os.Kill 
(force
   // the process to exit). On Windows, sending os.Interrupt to a process with
   // os.Process.Signal is not implemented; it will return an error instead of
   // sending a signal.
   var (
        Interrupt Signal = syscall.SIGINT
        Kill      Signal = syscall.SIGKILL
   )
   
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to