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