File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
*
6
6
* Copyright (c) 2004-2005, PostgreSQL Global Development Group
7
7
* IDENTIFICATION
8
- * $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.9 2005/08/28 18:49:01 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.10 2005/08/28 21:42:28 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
14
14
#include <windows.h>
15
15
#include "pthread-win32.h"
16
16
17
- HANDLE
17
+ DWORD
18
18
pthread_self ()
19
19
{
20
20
return GetCurrentThreadId ();
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ typedef ULONG pthread_key_t;
5
5
typedef HANDLE pthread_mutex_t ;
6
6
typedef int pthread_once_t ;
7
7
8
- HANDLE pthread_self ();
8
+ DWORD pthread_self ();
9
9
10
10
void pthread_setspecific (pthread_key_t , void * );
11
11
void * pthread_getspecific (pthread_key_t );
You can’t perform that action at this time.
0 commit comments