SWOC System
Server Wait On Clients System.
signalhandle.h
Go to the documentation of this file.
1 
14 /* **********************************************************************
15  * *
16  * Changelog *
17  * *
18  * Date Author Version Description *
19  * *
20  * 08/07/2015 MG 1.0.1 First release. *
21  * 09/05/2016 MG 1.0.2 Move header files to include directory. *
22  * 13/06/2016 MG 1.0.3 Adopt convention of using void in empty *
23  * function parameter lists. *
24  * 17/07/2016 MG 1.0.4 Move towards kernel coding style. *
25  * 12/11/2017 MG 1.0.5 Add Doxygen comments. *
26  * Add SPDX license tag. *
27  * 22/05/2018 MG 1.0.6 Simplify src directory structure and *
28  * header file location. *
29  * 18/05/2019 MG 1.0.7 Merge sub-projects into one. *
30  * *
31  ************************************************************************
32  */
33 
34 #ifndef SIGNALHANDLE_H
35 #define SIGNALHANDLE_H
36 
37 #include <portability.h>
38 
39 BEGIN_C_DECLS
40 
41 void init_sig_handle(void);
42 
43 void termination_handler(int signum);
44 
45 END_C_DECLS
46 
47 #endif /* ndef SIGNALHANDLE_H */
48 
void termination_handler(const int signum)
Handler for caught signals.
Definition: signalhandle.c:166
BEGIN_C_DECLS void init_sig_handle(void)
Initialise signal handler.
Definition: signalhandle.c:63