Server Wait On Clients System - API Documentation  v1.3.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  * 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  * 27/03/2020 MG 1.0.8 Move into swocclient sub-directory as *
31  * the directory hierarchy needs to be the *
32  * same accross the source tree for *
33  * temporary libraries to work based on *
34  * the search in configure.ac. *
35  * *
36  ************************************************************************
37  */
38 
39 #ifndef SIGNALHANDLE_H
40 #define SIGNALHANDLE_H
41 
42 #include <portability.h>
43 
44 BEGIN_C_DECLS
45 
46 void init_sig_handle(void);
47 
48 void termination_handler(int signum);
49 
50 END_C_DECLS
51 
52 #endif /* ndef SIGNALHANDLE_H */
53 
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