aboutsummaryrefslogtreecommitdiff
path: root/tests/server
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2013-04-06 11:55:30 +0200
committerMarc Hoersken <info@marc-hoersken.de>2013-04-06 11:55:30 +0200
commit91252d9fb9ef478c8cb47745ea0088909e7ad589 (patch)
treeb50c02904d6159f7ec295a7e4a27426fea521b77 /tests/server
parentefa5488448771f9cf6554b137d388ea5f3dc90c6 (diff)
util.c: Revert workaround eeefcdf, 6eb56e7 and e3787e8
Diffstat (limited to 'tests/server')
-rw-r--r--tests/server/util.c56
1 files changed, 0 insertions, 56 deletions
diff --git a/tests/server/util.c b/tests/server/util.c
index 22e42bb65..06f3ce10d 100644
--- a/tests/server/util.c
+++ b/tests/server/util.c
@@ -55,10 +55,6 @@
#define EINVAL 22 /* errno.h value */
#endif
-#ifdef __MINGW32__
-#include <TlHelp32.h>
-#endif
-
#if defined(ENABLE_IPV6) && defined(__MINGW32__)
const struct in6_addr in6addr_any = {{ IN6ADDR_ANY_INIT }};
#endif
@@ -252,58 +248,6 @@ int wait_ms(int timeout_ms)
return r;
}
-#ifdef __MINGW32__
-/* WORKAROUND
- *
- * These functions make it possible to get the Msys PID instead of the
- * Windows PID assigned to the current process. This is done by walking up
- * to the Msys sh.exe process that launched the actual Windows processes.
- *
- * Usually an Msys process would result in the following process tree:
- * sh.exe <-- waiting Windows process, but visible Msys process
- * \
- * <proc>.exe <-- waiting Windows process, but not visible to Msys
- * \
- * <proc>.exe <-- running Windows process, but not visible to Msys
- *
- * Attention: This may not be true for all Msys processes.
- */
-static pid_t getpid_msys(void)
-{
- PROCESSENTRY32 entry;
- HANDLE snapshot;
- DWORD pid;
- BOOL walk;
-
- pid = (DWORD)getpid();
-
- entry.dwSize = sizeof(PROCESSENTRY32);
- snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, pid);
-
- if(snapshot != INVALID_HANDLE_VALUE) {
- walk = TRUE;
- do {
- if(Process32First(snapshot, &entry)) {
- do {
- if(pid == entry.th32ProcessID) {
- if(!strcmp(entry.szExeFile, "sh.exe")) {
- walk = FALSE;
- break;
- }
- pid = entry.th32ParentProcessID;
- break;
- }
- } while (Process32Next(snapshot, &entry));
- }
- } while(walk);
- CloseHandle(snapshot);
- }
-
- return (pid_t)pid;
-}
-#define getpid() getpid_msys()
-#endif
-
int write_pidfile(const char *filename)
{
FILE *pidfile;