Commit 2f0958fa authored by Bradley Nicholes's avatar Bradley Nicholes
Browse files

Fix up exit() to make sure that things are cleaned up properly on error

conditions


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91690 13f79535-47bb-0310-9956-ffa450edef68
parent 178e1f0a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -63,12 +63,14 @@
#define PLATFORM "NETWARE"
#endif

#include <screen.h>

#define CASE_BLIND_FILESYSTEM
#define NO_WRITEV

#define APACHE_MPM_DIR  "server/mpm/netware" /* generated on unix */

#define getpid NXThreadGetId
//#define exit(s) _exit(s)
#define exit(s) if(s){pressanykey();apr_terminate();}exit(s);

#endif   /* ! APACHE_OS_H */