Server Wait On Clients System - API Documentation  v1.6.4
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  * 11/10/2021 MG 1.0.9 Move to inc directory. *
36  * Merge client and server versions. *
37  * 08/12/2021 MG 1.0.10 Tighten SPDX tag. *
38  * 17/09/2022 MG 1.0.11 Rename portability.h *
39  * Use pkginclude location. *
40  * *
41  ************************************************************************
42  */
43 
44 #ifndef SIGNALHANDLE_H
45 #define SIGNALHANDLE_H
46 
47 #include <libmgec/mge-portability.h>
48 
49 BEGIN_C_DECLS
50 
51 void init_sig_handle(void);
52 
53 void termination_handler(int signum);
54 
55 END_C_DECLS
56 
57 #endif /* ndef SIGNALHANDLE_H */
BEGIN_C_DECLS void init_sig_handle(void)
Initialise signal handler.
Definition: signalhandle.c:72
void termination_handler(int signum)
Handler for caught signals.
Definition: signalhandle.c:175