We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f426fbf commit 667685cCopy full SHA for 667685c
src/test/thread/thread_test.c
@@ -6,7 +6,7 @@
6
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
7
* Portions Copyright (c) 1994, Regents of the University of California
8
*
9
- * $PostgreSQL: pgsql/src/test/thread/thread_test.c,v 1.5 2008/01/01 19:46:01 momjian Exp $
+ * $PostgreSQL: pgsql/src/test/thread/thread_test.c,v 1.6 2008/11/18 21:17:26 mha Exp $
10
11
* This program tests to see if your standard libc functions use
12
* pthread_setspecific()/pthread_getspecific() to be thread-safe.
@@ -47,6 +47,10 @@ typedef char bool;
47
#include <fcntl.h>
48
#include <errno.h>
49
50
+/* CYGWIN requires this for MAXHOSTNAMELEN */
51
+#ifdef __CYGWIN__
52
+#include <sys/param.h>
53
+#endif
54
55
/******************************************************************
56
* Windows Hacks
0 commit comments