summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/pthread-win32.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-08-28 21:42:28 +0000
committerBruce Momjian <bruce@momjian.us>2005-08-28 21:42:28 +0000
commit3b85fc3a529d6d1955fe91d908a286170c58ab34 (patch)
treefe01c6b8ecc9913114f4fe867f31da089678b521 /src/interfaces/libpq/pthread-win32.h
parenta78a5308290e66ee33f0cf7a307176970f43f7ea (diff)
Update pthread_self() on Win32 to return DWORD.
Diffstat (limited to 'src/interfaces/libpq/pthread-win32.h')
-rw-r--r--src/interfaces/libpq/pthread-win32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/pthread-win32.h b/src/interfaces/libpq/pthread-win32.h
index 5172cc3cafa..4109c898713 100644
--- a/src/interfaces/libpq/pthread-win32.h
+++ b/src/interfaces/libpq/pthread-win32.h
@@ -5,7 +5,7 @@ typedef ULONG pthread_key_t;
typedef HANDLE pthread_mutex_t;
typedef int pthread_once_t;
-HANDLE pthread_self();
+DWORD pthread_self();
void pthread_setspecific(pthread_key_t, void*);
void* pthread_getspecific(pthread_key_t);