Rudiments
process.h
1 // Copyright (c) 1999-2013 David Muse
2 // See the COPYING file for more information.
3 
4  private:
5  static void shutDown(int32_t signum);
6  static void crash(int32_t signum);
7  static void defaultShutDown(int32_t signum);
8  static void defaultCrash(int32_t signum);
9  static void waitForChildrenToExit(int32_t signum);
10 
11  #ifndef _WIN32
12  static signalhandler _deadchildhandler;
13  static signalhandler _shutdownhandler;
14  static signalhandler _crashhandler;
15  static void (*_shutdownfunc)(int32_t);
16  static void (*_crashfunc)(int32_t);
17  #endif