Imported Upstream version 2.7
[ossec-hids.git] / src / headers / sig_op.h
1 /* @(#) $Id: ./src/headers/sig_op.h, 2011/09/08 dcid Exp $
2  */
3
4 /* Copyright (C) 2009 Trend Micro Inc.
5  * All right reserved.
6  *
7  * This program is a free software; you can redistribute it
8  * and/or modify it under the terms of the GNU General Public
9  * License (version 2) as published by the FSF - Free Software
10  * Foundation
11  */
12
13
14 /* Functions to handle signal manipulation
15  */
16
17 #ifndef __SIG_H
18
19 #define __SIG_H
20
21 void HandleSIG();
22 void HandleSIGPIPE();
23
24 /* Start signal manipulation */
25 void StartSIG(char *process_name);
26
27 /* Start signal manipulation -- function as an argument */
28 void StartSIG2(char *process_name, void (*func)(int));
29
30 #endif