diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-08-28 21:42:28 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-08-28 21:42:28 +0000 |
commit | 3b85fc3a529d6d1955fe91d908a286170c58ab34 (patch) | |
tree | fe01c6b8ecc9913114f4fe867f31da089678b521 /src/interfaces/libpq/pthread-win32.c | |
parent | a78a5308290e66ee33f0cf7a307176970f43f7ea (diff) |
Update pthread_self() on Win32 to return DWORD.
Diffstat (limited to 'src/interfaces/libpq/pthread-win32.c')
-rw-r--r-- | src/interfaces/libpq/pthread-win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/pthread-win32.c b/src/interfaces/libpq/pthread-win32.c index fd2481cd78c..11daa9f531b 100644 --- a/src/interfaces/libpq/pthread-win32.c +++ b/src/interfaces/libpq/pthread-win32.c @@ -5,7 +5,7 @@ * * Copyright (c) 2004-2005, PostgreSQL Global Development Group * IDENTIFICATION -* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.9 2005/08/28 18:49:01 momjian Exp $ +* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.10 2005/08/28 21:42:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -14,7 +14,7 @@ #include <windows.h> #include "pthread-win32.h" -HANDLE +DWORD pthread_self() { return GetCurrentThreadId(); |