You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "rfyiamcool (via GitHub)" <gi...@apache.org> on 2023/05/09 08:32:38 UTC

[GitHub] [dubbo-go-samples] rfyiamcool opened a new pull request, #568: fix: remove same signal

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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org


[GitHub] [dubbo-go-samples] AlexStocks merged pull request #568: fix: remove same signal

Posted by "AlexStocks (via GitHub)" <gi...@apache.org>.
AlexStocks merged PR #568:
URL: https://github.com/apache/dubbo-go-samples/pull/568


-- 
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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org