From c9ecd55a009da9a338d69515783d477098c22de9 Mon Sep 17 00:00:00 2001 From: asandikci Date: Mon, 31 Jul 2023 16:08:15 +0300 Subject: [PATCH] feat: add signal handling resources --- dev/resources.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev/resources.md b/dev/resources.md index 34c5e28..15bc103 100644 --- a/dev/resources.md +++ b/dev/resources.md @@ -58,6 +58,12 @@ - https://ww2.cs.fsu.edu/~bogdanov/private/2013-LIS4488/agenda/week04/daemons-n-services.pdf (2013) | Overview - Daemons and Services - https://flylib.com/books/en/1.393.1.20/1/ (2011) | BSD Sytle vs SysV daemon - https://refspecs.linuxbase.org/LSB_3.1.1/LSB-Core-generic/LSB-Core-generic/tocsysinit.html | LSB System Init Scripts + +### Signal Handling / Restart +- https://www.developer.com/languages/os-signals-go/ +- https://github.com/kylelemons/daemon/blob/master/restart.go +- https://golang.howtos.io/managing-os-signals-in-go/ +- https://golang.howtos.io/working-with-system-signals-in-go-using-the-os-signal-package/ ### Daemon Examples in Other Projects - SSH - [openssh/sshd.c](https://github.com/openssh/openssh-portable/blob/master/sshd.c)