From: José Fonseca Date: Mon, 19 Sep 2011 08:30:52 +0000 (+0100) Subject: Add a few links for signal handling reference material. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=5ca8f405b1bb08ecfc216899e517481a4f798121;p=apitrace Add a few links for signal handling reference material. --- 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;