summaryrefslogtreecommitdiff
path: root/src/htsthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/htsthread.h')
-rw-r--r--src/htsthread.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/htsthread.h b/src/htsthread.h
index cac48de..f62c39c 100644
--- a/src/htsthread.h
+++ b/src/htsthread.h
@@ -58,7 +58,6 @@ Please visit our Website: http://www.httrack.com
#define PTHREAD_TYPE_FNC __cdecl
#define PTHREAD_LOCK_TYPE HANDLE
#define PTHREAD_HANDLE HANDLE
-#define PTHREAD_WAIT_THREAD(A) do { WaitForSingleObject(A, INFINITE); CloseHandle(A); } while(0)
/* Useless - see '__declspec( thread )' */
@@ -82,7 +81,6 @@ Please visit our Website: http://www.httrack.com
#define PTHREAD_KEY_SET(key, val, ptrtype) pthread_setspecific(key, (void*)val)
#define PTHREAD_KEY_GET(key, ptrval, ptrtype) do { *(ptrval)=(ptrtype)pthread_getspecific(key); } while(0)
#define PTHREAD_HANDLE pthread_t
-#define PTHREAD_WAIT_THREAD(A) do { pthread_join(A, NULL); CloseHandle(A); } while(0)
#endif