commit 45b33400ccc16a5f4ca5ee98607f6111cd0b1083
parent 2d797e7b5e22d6502226e6cd9cf8eb2fc0a2454f
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 8 Aug 2007 22:11:48 +0000
symbols
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
@@ -633,7 +633,7 @@ static void sigalrmHandler(int sig) {
/**
* Initialize the signal handler for SIGALRM.
*/
-void __attribute__ ((constructor)) pthread_handlers_ltdl_init() {
+void __attribute__ ((constructor)) MHD_pthread_handlers_ltdl_init() {
/* make sure SIGALRM does not kill us */
memset(&sig, 0, sizeof(struct sigaction));
memset(&old, 0, sizeof(struct sigaction));
@@ -642,7 +642,7 @@ void __attribute__ ((constructor)) pthread_handlers_ltdl_init() {
sigaction(SIGALRM, &sig, &old);
}
-void __attribute__ ((destructor)) pthread_handlers_ltdl_fini() {
+void __attribute__ ((destructor)) MHD_pthread_handlers_ltdl_fini() {
sigaction(SIGALRM, &old, &sig);
}