diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-02T15·28+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-02T15·28+0000 |
commit | 4bbbe25802ee5d625d05b9566bcc488b93974692 (patch) | |
tree | 65db343c3e2733ff46695caeef50be86229fb934 /src/libutil/util.cc | |
parent | 2723d9b56e2ea15c0c753ae579849806102f4ce0 (diff) |
* Remove most Cygwin-specific code. Cygwin 1.7 implements advisory
POSIX locks, and simulates Unix-style file deletion semantics sufficiently. Note that this means that Nix won't work on Cygwin 1.5 anymore.
Diffstat (limited to 'src/libutil/util.cc')
-rw-r--r-- | src/libutil/util.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 711a969e4fc9..bb17fa5f66ca 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -1,9 +1,5 @@ #include "config.h" -#ifdef __CYGWIN__ -#include <windows.h> -#endif - #include <iostream> #include <cerrno> #include <cstdio> @@ -905,15 +901,7 @@ void closeMostFDs(const set<int> & exceptions) void quickExit(int status) { -#ifdef __CYGWIN__ - /* Hack for Cygwin: _exit() doesn't seem to work quite right, - since some Berkeley DB code appears to be called when a child - exits through _exit() (e.g., because execve() failed). So call - the Windows API directly. */ - ExitProcess(status); -#else _exit(status); -#endif } |