blob: e73571e356a769eba638dde820c842e4896bfd66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef exittrap_h
#define exittrap_h
#include "config.h"
//////////////////////////////////////////////////////////////////////////
//
// ExitTrap implements exit traps - cleanup functions that must be called
// in case of an abnormal program termination.
//
// This class does NOT do anything like trap signals, etcetera. The main
// program should do that, and call onexit() in order to call the cleanup()
// virtual function.
//
//////////////////////////////////////////////////////////////////////////
class ExitTrap {
ExitTrap *next, *prev;
virtual void cleanup()=0;
virtual void forked()=0;
int callcleanup;
protected:
void destroying() { callcleanup=0; }
void constructed() { callcleanup=1; }
public:
ExitTrap();
virtual ~ExitTrap();
static void onexit();
static void onfork();
} ;
#endif
|