Changeset 16 in Main for trunk/Server/main.c
- Timestamp:
- Sep 14, 2024, 12:09:52 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/main.c
r9 r16 1 1 /* $Id$ */ 2 3 #define SOURCE 2 4 3 5 #include <stdio.h> 4 6 #include <stdbool.h> 5 7 #include <string.h> 8 #include <signal.h> 6 9 7 10 #include <openssl/opensslv.h> … … 50 53 } 51 54 cm_log("Daemon", "Ready"); 55 #ifndef __MINGW32__ 56 signal(SIGCHLD, SIG_IGN); 57 #endif 52 58 tw_server_loop(); 53 59 }
Note:
See TracChangeset
for help on using the changeset viewer.