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
29
30
31
32
33
34
|
/*
* File: ms_sigsegv.h
* Author: Mingqiang Zhuang
*
* Created on March 15, 2009
*
* (c) Copyright 2009, Schooner Information Technology, Inc.
* http://www.schoonerinfotech.com/
*
*/
#ifndef MS_SIGSEGV_H
#define MS_SIGSEGV_H
#ifdef __cplusplus
extern "C" {
#endif
/* redirect signal seg */
int ms_setup_sigsegv(void);
/* redirect signal pipe */
int ms_setup_sigpipe(void);
/* redirect signal int */
int ms_setup_sigint(void);
#ifdef __cplusplus
}
#endif
#endif /* end of MS_SIGSEGV_H */
|