From 5ca8f405b1bb08ecfc216899e517481a4f798121 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 19 Sep 2011 09:30:52 +0100 Subject: [PATCH] Add a few links for signal handling reference material. --- os_posix.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/os_posix.cpp b/os_posix.cpp index 991ad0e..98a790b 100644 --- a/os_posix.cpp +++ b/os_posix.cpp @@ -145,6 +145,12 @@ static void (*gCallback)(void) = NULL; struct sigaction old_actions[NUM_SIGNALS]; + +/* + * See also: + * - http://sourceware.org/git/?p=glibc.git;a=blob;f=debug/segfault.c + * - http://ggi.cvs.sourceforge.net/viewvc/ggi/ggi-core/libgg/gg/cleanup.c?view=markup + */ static void signal_handler(int sig, siginfo_t *info, void *context) { static int recursion_count = 0; -- 2.45.2