1 /*!
2  * \file   ProcessManager.h
3  * \brief
4  *
5  * \author Helfer Thomas
6  * \date   09 nov 2007
7  */
8 
9 #ifndef LIB_TFEL_PROCESSMANAGER_H_
10 #define LIB_TFEL_PROCESSMANAGER_H_
11 
12 #ifdef	__cplusplus
13 extern "C" {
14 #endif /* LIB_TFEL_PROCESSMANAGER_H_ */
15 
16   int
17   processManager_wifsignaled(int);
18 
19   int
20   processManager_wifstopped(int);
21 
22   int
23   processManager_wifexited(int);
24 
25   int
26   processManager_wexitstatus(int);
27 
28 #ifndef _AIX
29   int
30   processManager_wtermsig(int);
31 
32   int
33   processManager_wcoredump(int);
34 #endif /* _AIX */
35 
36 #ifdef	__cplusplus
37 }
38 #endif /* LIB_TFEL_PROCESSMANAGER_H_ */
39 
40 #endif /* LIB_TFEL_PROCESSMANAGER_H_ */
41