*** pgsql/src/port/thread.c 2008/01/01 19:46:00 1.38 --- pgsql/src/port/thread.c 2008/04/22 13:06:57 1.39 *************** *** 7,13 **** * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/port/thread.c,v 1.37 2007/04/03 12:55:23 momjian Exp $ * *------------------------------------------------------------------------- */ --- 7,13 ---- * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/port/thread.c,v 1.38 2008/01/01 19:46:00 momjian Exp $ * *------------------------------------------------------------------------- */ *************** *** 16,26 **** #include #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) - #ifdef WIN32 - #include "pthread-win32.h" - #else - #include - #endif #endif --- 16,21 ---- *************** *** 50,56 **** * The current setup is to try threading in this order: * * use *_r function names if they exit ! * (*_THREADSAFE=ye) * use non-*_r functions if they are thread-safe * * One thread-safe solution for gethostbyname() might be to use getaddrinfo(). --- 45,51 ---- * The current setup is to try threading in this order: * * use *_r function names if they exit ! * (*_THREADSAFE=yes) * use non-*_r functions if they are thread-safe * * One thread-safe solution for gethostbyname() might be to use getaddrinfo().