Server Wait On Clients System - Full Internal Documentation  v1.4.2
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  * 22/06/2015 MG 1.0.1 First release. *
21  * 10/05/2016 MG 1.0.2 Move header files to include directory. *
22  * 17/07/2016 MG 1.0.3 Move towards kernel coding style. *
23  * 27/09/2016 MG 1.0.4 Further coding style changes. *
24  * Improve in-source documentation. *
25  * 17/11/2017 MG 1.0.5 Add Doxygen comments. *
26  * Add SPDX license tag. *
27  * 18/05/2019 MG 1.0.6 Merge sub-projects into one. *
28  * *
29  ************************************************************************
30  */
31 
32 #ifndef SIGNALHANDLE_H
33 #define SIGNALHANDLE_H
34 
35 #include <portability.h>
36 
37 BEGIN_C_DECLS
38 
39 void init_sig_handle(void);
40 
41 void termination_handler(const int signum);
42 
43 END_C_DECLS
44 
45 #endif /* ndef SIGNALHANDLE_H */
46 
void termination_handler(const int signum)
Handler for caught signals.
Definition: signalhandle.c:171
BEGIN_C_DECLS void init_sig_handle(void)
Initialise signal handler.
Definition: signalhandle.c:68