Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

signals_plan9.go 307B

1234567891011121314151617181920
  1. // +build plan9
  2. // Copyright (c) 2020 Shivaram Lingamneni
  3. // released under the MIT license
  4. package irc
  5. import (
  6. "os"
  7. "syscall"
  8. )
  9. var (
  10. // ServerExitSignals are the signals the server will exit on.
  11. // (no SIGQUIT on plan9)
  12. ServerExitSignals = []os.Signal{
  13. syscall.SIGINT,
  14. syscall.SIGTERM,
  15. }
  16. )