add signal handling manual page

This commit is contained in:
Aliberk Sandıkçı 2023-08-02 08:54:45 +03:00
parent 979bd894d8
commit c3a650feb7
Signed by: asandikci
GPG key ID: 25C67A03B5666BC1

View file

@ -6,6 +6,7 @@
- [Linux Daemon](#linux-daemon) - [Linux Daemon](#linux-daemon)
- [New Style Daemons](#new-style-daemons) - [New Style Daemons](#new-style-daemons)
- [Useful Stackexchange pages](#useful-stackexchange-pages) - [Useful Stackexchange pages](#useful-stackexchange-pages)
- [Signal Handling & Restart](#signal-handling-restart)
- [Daemon Examples in Other Projects](#daemon-examples-in-other-projects) - [Daemon Examples in Other Projects](#daemon-examples-in-other-projects)
- [XMPP](#xmpp) - [XMPP](#xmpp)
- [XMPP Info](#xmpp-info) - [XMPP Info](#xmpp-info)
@ -62,6 +63,7 @@
- https://refspecs.linuxbase.org/LSB_3.1.1/LSB-Core-generic/LSB-Core-generic/tocsysinit.html | LSB System Init Scripts - https://refspecs.linuxbase.org/LSB_3.1.1/LSB-Core-generic/LSB-Core-generic/tocsysinit.html | LSB System Init Scripts
### Signal Handling / Restart ### Signal Handling / Restart
- https://www.man7.org/linux/man-pages/man7/signal.7.html | Signals Manual Page
- https://www.developer.com/languages/os-signals-go/ - https://www.developer.com/languages/os-signals-go/
- https://stackoverflow.com/questions/68201595/how-to-restart-itself-in-go-daemon-process - https://stackoverflow.com/questions/68201595/how-to-restart-itself-in-go-daemon-process
- https://github.com/kylelemons/daemon/blob/master/restart.go - https://github.com/kylelemons/daemon/blob/master/restart.go