diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-08-23 21:02:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-08-23 21:02:05 +0000 |
commit | 43bf3a6bc658d634e073dcb4ea3580dd9053a3b1 (patch) | |
tree | 40d357f8408e146b23f3e005798677a2340ba331 /src/interfaces/libpq/pthread-win32.c | |
parent | f2cec8760581aa9d036c659ecf9ad74907709cc1 (diff) | |
download | postgresql-43bf3a6bc658d634e073dcb4ea3580dd9053a3b1.tar.gz postgresql-43bf3a6bc658d634e073dcb4ea3580dd9053a3b1.zip |
The attached patch updates the thread test program to run stand-alone on
Windows. The test itself is bypassed in configure as discussed, and
libpq has been updated appropriately to allow it to build in thread-safe
mode.
Dave Page
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 e5be8a95331..eb0862f1fa3 100644 --- a/src/interfaces/libpq/pthread-win32.c +++ b/src/interfaces/libpq/pthread-win32.c @@ -5,14 +5,14 @@ * * Copyright (c) 2004-2005, PostgreSQL Global Development Group * IDENTIFICATION -* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.7 2005/08/23 20:48:47 momjian Exp $ +* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.8 2005/08/23 21:02:03 momjian Exp $ * *------------------------------------------------------------------------- */ #include <windows.h> -#include "pthread.h" +#include "pthread-win32.h" HANDLE pthread_self() |