minor changes
This commit is contained in:
parent
9545741546
commit
c8cf072082
|
@ -19,7 +19,20 @@
|
||||||
#include "taoserror.h"
|
#include "taoserror.h"
|
||||||
#include "httpSystem.h"
|
#include "httpSystem.h"
|
||||||
|
|
||||||
|
void signal_handler(int signum) {
|
||||||
|
httpStopSystem();
|
||||||
|
httpCleanUpSystem();
|
||||||
|
exit(EXIT_SUCCESS);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
|
struct sigaction act;
|
||||||
|
act.sa_handler = signal_handler;
|
||||||
|
sigaction(SIGTERM, &act, NULL);
|
||||||
|
sigaction(SIGHUP, &act, NULL);
|
||||||
|
sigaction(SIGINT, &act, NULL);
|
||||||
|
sigaction(SIGABRT, &act, NULL);
|
||||||
|
|
||||||
// Initialize the system
|
// Initialize the system
|
||||||
if (httpInitSystem() < 0) {
|
if (httpInitSystem() < 0) {
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
Loading…
Reference in New Issue