aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2007-08-14 21:15:09 +0000
committerNils Durner <durner@gnunet.org>2007-08-14 21:15:09 +0000
commitb2bd7b67201f8fdb181729b50ed9fa8d03c47deb (patch)
treeb56c85fc46affc310b0222173260aec938675392
parent62410ce9504ab1aaea52c59a0b9b2b95e7885778 (diff)
downloadlibmicrohttpd-b2bd7b67201f8fdb181729b50ed9fa8d03c47deb.tar.gz
libmicrohttpd-b2bd7b67201f8fdb181729b50ed9fa8d03c47deb.zip
plibc
-rw-r--r--src/daemon/daemon.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index 3b2ebab0..34f76ce7 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -620,7 +620,16 @@ void __attribute__ ((destructor)) MHD_pthread_handlers_ltdl_fini ()
620{ 620{
621 sigaction (SIGALRM, &old, &sig); 621 sigaction (SIGALRM, &old, &sig);
622} 622}
623#else
624void __attribute__ ((constructor)) MHD_win_ltdl_init ()
625{
626 plibc_init("CRISP", "libmicrohttpd");
627}
623 628
629void __attribute__ ((destructor)) MHD_win_ltdl_fini ()
630{
631 plibc_shutdown();
632}
624#endif 633#endif
625 634
626/* end of daemon.c */ 635/* end of daemon.c */