Go
- 11 ответов
- 0 вопросов
7
Вклад в тег
// exit program on ps kill and Ctrl+C...
exitc := make(chan os.Signal, 1)
signal.Notify(exitc, os.Interrupt, os.Kill, syscall.SIGTERM)
// some code or goroutines
// ...
sig := <- exitc
// some cleanup or signal logging and printing