blob: ac6da9daf012ca771be89771696249cbfd013794 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef __SIGNAL_H__
#define __SIGNAL_H__
#include <pthread.h>
#include <signal.h>
#include <string.h>
extern volatile sig_atomic_t global_stop_flag;
static void signal_handler(int)
{
global_stop_flag = 1;
}
static __attribute__((constructor)) void signal_handler_install()
{
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = signal_handler;
sigaction(SIGINT, &sa, NULL);
sigaction(SIGQUIT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
}
int signal_set_thread_attr(pthread_attr_t *attr);
#endif
|