]> granicus.if.org Git - postgresql/commitdiff
Check and set thread-safe functions separately, rather than as a single
authorBruce Momjian <bruce@momjian.us>
Wed, 11 Feb 2004 21:44:06 +0000 (21:44 +0000)
committerBruce Momjian <bruce@momjian.us>
Wed, 11 Feb 2004 21:44:06 +0000 (21:44 +0000)
variable.

Remove thread locking for non-thread-safe functions, instead throw a
compile error.

Platforms will have to re-run tools/thread to record their thread
safety.

12 files changed:
configure
configure.in
src/include/pg_config.h.in
src/port/thread.c
src/template/bsdi
src/template/freebsd
src/template/linux
src/template/netbsd
src/template/osf
src/template/solaris
src/template/unixware
src/tools/thread/thread_test.c

index ba5e68a140f4635c3a6d753712a290440bd36a1e..8ab3edaaf5f779b0f4a5e1811f33a21860d64c86 100755 (executable)
--- a/configure
+++ b/configure
@@ -13198,8 +13198,8 @@ fi
 if test $ac_cv_header_pthread_h = yes; then
   :
 else
-  { { echo "$as_me:$LINENO: error: pthread.h not found, required for --enable-thread-safetys" >&5
-echo "$as_me: error: pthread.h not found, required for --enable-thread-safetys" >&2;}
+  { { echo "$as_me:$LINENO: error: pthread.h not found, required for --enable-thread-safety" >&5
+echo "$as_me: error: pthread.h not found, required for --enable-thread-safety" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
@@ -13222,32 +13222,40 @@ See the comment at the top of src/port/thread.c for more information.
 " >&2;}
    { (exit 1); exit 1; }; }
 fi
-else
-# do not use values from template file
-THREAD_CPPFLAGS=
-THREAD_LIBS=
-fi
-
-
-
-
 
 #
 # Check for re-entrant versions of certain functions
 #
 # Include special flags if threads are enabled _and_ if required for
 # threading on this platform.  Some platforms have *_r functions but
-# their natively named funcs are threadsafe, and should be used instead.
+# their natively named funcs are thread-safe too.
 #
-# One trick here is that if we don't call AC_CHECK_FUNCS, the
+# One trick here is that if we don't call AC_CHECK_FUNCS; the
 # functions are marked "not found", which is perfect.
 #
-if test "$enable_thread_safety" = yes -a "$NEED_REENTRANT_FUNCS" = yes ; then
+if test "$enable_thread_safety" = yes -a "$STRERROR_THREADSAFE" = yes ; then
+
+cat >>confdefs.h <<\_ACEOF
+#define STRERROR_THREADSAFE 1
+_ACEOF
+
+fi
+if test "$enable_thread_safety" = yes -a "$GETPWUID_THREADSAFE" = yes ; then
+
+cat >>confdefs.h <<\_ACEOF
+#define GETPWUID_THREADSAFE 1
+_ACEOF
+
+fi
+if test "$enable_thread_safety" = yes -a "$GETHOSTBYNAME_THREADSAFE" = yes ; then
 
 cat >>confdefs.h <<\_ACEOF
-#define NEED_REENTRANT_FUNCS 1
+#define GETHOSTBYNAME_THREADSAFE 1
 _ACEOF
 
+fi
+
+# Check for *_r functions
 _CFLAGS="$CFLAGS"
 _LIBS="$LIBS"
 CFLAGS="$CFLAGS $THREAD_CPPFLAGS"
@@ -13332,9 +13340,18 @@ done
 
 CFLAGS="$_CFLAGS"
 LIBS="$_LIBS"
+
+else
+# do not use values from template file
+THREAD_CPPFLAGS=
+THREAD_LIBS=
 fi
 
 
+
+
+
+
 # This test makes sure that run tests work at all.  Sometimes a shared
 # library is found by the linker, but the runtime linker can't find it.
 # This check should come after all modifications of compiler or linker
index 141aa6360f0950b40954b8ba6aa269bf15b99673..1526ddebd7ffa95b681bc93819be7c715fca0a97 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-dnl $PostgreSQL: pgsql/configure.in,v 1.315 2004/02/11 17:29:01 momjian Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.316 2004/02/11 21:44:04 momjian Exp $
 dnl
 dnl Developers, please strive to achieve this order:
 dnl
@@ -971,7 +971,7 @@ AC_FUNC_FSEEKO
 # See the comment at the top of src/port/thread.c for more information.
 #
 if test "$enable_thread_safety" = yes; then
-AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([pthread.h not found, required for --enable-thread-safetys])])
+AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([pthread.h not found, required for --enable-thread-safety])])
 
 if test "$THREAD_SUPPORT" != yes; then
 AC_MSG_ERROR([
@@ -982,28 +982,28 @@ functions, or libraries required for threading support.
 See the comment at the top of src/port/thread.c for more information.
 ])
 fi
-else
-# do not use values from template file
-THREAD_CPPFLAGS=
-THREAD_LIBS=
-fi
-AC_SUBST(THREAD_SUPPORT)
-AC_SUBST(THREAD_CPPFLAGS)
-AC_SUBST(THREAD_LIBS)
-
 
 #
 # Check for re-entrant versions of certain functions
 #
 # Include special flags if threads are enabled _and_ if required for 
 # threading on this platform.  Some platforms have *_r functions but
-# their natively named funcs are threadsafe, and should be used instead.
+# their natively named funcs are thread-safe too.
 #
-# One trick here is that if we don't call AC_CHECK_FUNCS, the
+# One trick here is that if we don't call AC_CHECK_FUNCS; the
 # functions are marked "not found", which is perfect.
 #
-if test "$enable_thread_safety" = yes -a "$NEED_REENTRANT_FUNCS" = yes ; then
-AC_DEFINE(NEED_REENTRANT_FUNCS, 1, [Define if non *_r libc functions are not thread safe])
+if test "$enable_thread_safety" = yes -a "$STRERROR_THREADSAFE" = yes ; then
+AC_DEFINE(STRERROR_THREADSAFE, 1, [Define if strerror is not thread safe])
+fi
+if test "$enable_thread_safety" = yes -a "$GETPWUID_THREADSAFE" = yes ; then
+AC_DEFINE(GETPWUID_THREADSAFE, 1, [Define if getpwuid is not thread safe])
+fi
+if test "$enable_thread_safety" = yes -a "$GETHOSTBYNAME_THREADSAFE" = yes ; then
+AC_DEFINE(GETHOSTBYNAME_THREADSAFE, 1, [Define if gethostbyname is not thread safe])
+fi
+
+# Check for *_r functions
 _CFLAGS="$CFLAGS"
 _LIBS="$LIBS"
 CFLAGS="$CFLAGS $THREAD_CPPFLAGS"
@@ -1011,8 +1011,17 @@ LIBS="$LIBS $THREAD_LIBS"
 AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
 CFLAGS="$_CFLAGS"
 LIBS="$_LIBS"
+
+else
+# do not use values from template file
+THREAD_CPPFLAGS=
+THREAD_LIBS=
 fi
 
+AC_SUBST(THREAD_SUPPORT)
+AC_SUBST(THREAD_CPPFLAGS)
+AC_SUBST(THREAD_LIBS)
+
 
 # This test makes sure that run tests work at all.  Sometimes a shared
 # library is found by the linker, but the runtime linker can't find it.
index 3b7526f37968f8835801901d7622185626db4876..7fbfa66086ed9ce78bc2549f7c7851c8ddcc448d 100644 (file)
    (--enable-thread-safety) */
 #undef ENABLE_THREAD_SAFETY
 
+/* Define if gethostbyname is not thread safe */
+#undef GETHOSTBYNAME_THREADSAFE
+
+/* Define if getpwuid is not thread safe */
+#undef GETPWUID_THREADSAFE
+
 /* Define to 1 if gettimeofday() takes only 1 argument. */
 #undef GETTIMEOFDAY_1ARG
 
 /* Define as the maximum alignment requirement of any C data type. */
 #undef MAXIMUM_ALIGNOF
 
-/* Define if non *_r libc functions are not thread safe */
-#undef NEED_REENTRANT_FUNCS
-
 /* Define to the address where bug reports for this package should be sent. */
 #undef PACKAGE_BUGREPORT
 
 /* Define to 1 if you have the ANSI C header files. */
 #undef STDC_HEADERS
 
+/* Define if strerror is not thread safe */
+#undef STRERROR_THREADSAFE
+
 /* Define to 1 if your <sys/time.h> declares `struct tm'. */
 #undef TM_IN_SYS_TIME
 
index e164d017d4faf26e08580c986ea16f81dd2f9074..d6e1b269733607d13891bd655d993acc352a3c56 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/port/thread.c,v 1.14 2003/11/29 22:41:31 pgsql Exp $
+ * $PostgreSQL: pgsql/src/port/thread.c,v 1.15 2004/02/11 21:44:06 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -31,7 +31,7 @@
  *     strerror().  Other operating systems use pthread_setspecific()
  *     and pthread_getspecific() internally to allow standard library
  *     functions to return static data to threaded applications. And some
- *     operating systems have neither, meaning we have to do our own locking.
+ *     operating systems have neither.
  *
  *     Additional confusion exists because many operating systems that
  *     use pthread_setspecific/pthread_getspecific() also have *_r versions
  *
  *     The current setup is to try threading in this order:
  *
- *             use non-*_r function names if they are all thread-safe
- *                     (NEED_REENTRANT_FUNCS=no)
- *             use *_r functions if they exist (configure test)
- *             do our own locking and copying of non-threadsafe functions
- *
- *     The disadvantage of the last option is not the thread overhead but
- *     the fact that all function calls are serialized, and with gethostbyname()
- *     requiring a DNS lookup, that could be slow.
+ *             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().
  *
- *     See src/tools/thread to see if your operating system has thread-safe
+ *     Run src/tools/thread to see if your operating system has thread-safe
  *     non-*_r functions.
  */
  
@@ -73,7 +68,7 @@
 char *
 pqStrerror(int errnum, char *strerrbuf, size_t buflen)
 {
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && defined(HAVE_STRERROR_R)
+#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_STRERROR_R)
        /* reentrant strerror_r is available */
        /* some early standards had strerror_r returning char * */
        strerror_r(errnum, strerrbuf, buflen);
@@ -81,18 +76,13 @@ pqStrerror(int errnum, char *strerrbuf, size_t buflen)
 
 #else
 
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_STRERROR_R)
-       static pthread_mutex_t strerror_lock = PTHREAD_MUTEX_INITIALIZER;
-       pthread_mutex_lock(&strerror_lock);
+#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && !defined(STRERROR_THREADSAFE)
+#error This platform can not create a thread-safe version because strerror is not thread-safe and there is no reentrant version
 #endif
 
        /* no strerror_r() available, just use strerror */
        StrNCpy(strerrbuf, strerror(errnum), buflen);
 
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_STRERROR_R)
-       pthread_mutex_unlock(&strerror_lock);
-#endif
-
        return strerrbuf;
 #endif
 }
@@ -106,7 +96,7 @@ int
 pqGetpwuid(uid_t uid, struct passwd *resultbuf, char *buffer,
                   size_t buflen, struct passwd **result)
 {
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && defined(HAVE_GETPWUID_R)
+#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_GETPWUID_R)
        /*
         * Early POSIX draft of getpwuid_r() returns 'struct passwd *'.
         *    getpwuid_r(uid, resultbuf, buffer, buflen)
@@ -117,53 +107,14 @@ pqGetpwuid(uid_t uid, struct passwd *resultbuf, char *buffer,
 
 #else
 
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETPWUID_R)
-       static pthread_mutex_t getpwuid_lock = PTHREAD_MUTEX_INITIALIZER;
-       pthread_mutex_lock(&getpwuid_lock);
+#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && !defined(GETPWUID_THREADSAFE)
+#error This platform can not create a thread-safe version because getpwuid is not thread-safe and there is no reentrant version
 #endif
 
        /* no getpwuid_r() available, just use getpwuid() */
        *result = getpwuid(uid);
-
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETPWUID_R)
-
-       /* Use 'buffer' memory for storage of strings used by struct passwd */
-       if (*result &&
-               strlen((*result)->pw_name) + 1 +
-               strlen((*result)->pw_passwd) + 1 +
-               strlen((*result)->pw_gecos) + 1 +
-               /* skip class if it exists */
-               strlen((*result)->pw_dir) + 1 +
-               strlen((*result)->pw_shell) + 1 <= buflen)
-       {
-               memcpy(resultbuf, *result, sizeof(struct passwd));
-               strcpy(buffer, (*result)->pw_name);
-               resultbuf->pw_name = buffer;
-               buffer += strlen(resultbuf->pw_name) + 1;
-               strcpy(buffer, (*result)->pw_passwd);
-               resultbuf->pw_passwd = buffer;
-               buffer += strlen(resultbuf->pw_passwd) + 1;
-               strcpy(buffer, (*result)->pw_gecos);
-               resultbuf->pw_gecos = buffer;
-               buffer += strlen(resultbuf->pw_gecos) + 1;
-               strcpy(buffer, (*result)->pw_dir);
-               resultbuf->pw_dir = buffer;
-               buffer += strlen(resultbuf->pw_dir) + 1;
-               strcpy(buffer, (*result)->pw_shell);
-               resultbuf->pw_shell = buffer;
-               buffer += strlen(resultbuf->pw_shell) + 1;
-
-               *result = resultbuf;
-       }
-       else
-       {
-               *result = NULL;
-               errno = ERANGE;
-       }
-
-       pthread_mutex_unlock(&getpwuid_lock);
-#endif
 #endif
+
        return (*result == NULL) ? -1 : 0;
 }
 #endif
@@ -181,7 +132,7 @@ pqGethostbyname(const char *name,
                                struct hostent **result,
                                int *herrno)
 {
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && defined(HAVE_GETHOSTBYNAME_R)
+#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_GETHOSTBYNAME_R)
        /*
         * broken (well early POSIX draft) gethostbyname_r() which returns
         * 'struct hostent *'
@@ -191,87 +142,16 @@ pqGethostbyname(const char *name,
 
 #else
 
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETHOSTBYNAME_R)
-       static pthread_mutex_t gethostbyname_lock = PTHREAD_MUTEX_INITIALIZER;
-       pthread_mutex_lock(&gethostbyname_lock);
+#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && !defined(GETHOSTBYNAME_THREADSAFE)
+#error This platform can not create a thread-safe version because getaddrinfo is not thread-safe and there is no reentrant version
 #endif
 
        /* no gethostbyname_r(), just use gethostbyname() */
        *result = gethostbyname(name);
 
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETHOSTBYNAME_R)
-
-       /*
-        *      Use 'buffer' memory for storage of structures used by struct hostent.
-        *      The layout is:
-        *
-        *              addr pointers
-        *              alias pointers
-        *              addr structures
-        *              alias structures
-        *              name
-        */
-       if (*result)
-       {
-               int             i, pointers = 2 /* for nulls */, len = 0;
-               char    **pbuffer;
-
-               for (i = 0; (*result)->h_addr_list[i]; i++, pointers++)
-                       len += (*result)->h_length;
-               for (i = 0; (*result)->h_aliases[i]; i++, pointers++)
-                       len += (*result)->h_length;
-
-               if (pointers * sizeof(char *) + MAXALIGN(len) + strlen((*result)->h_name) + 1 <= buflen)
-               {
-                       memcpy(resultbuf, *result, sizeof(struct hostent));
-
-               pbuffer = (char **)buffer;
-               resultbuf->h_addr_list = pbuffer;
-               buffer += pointers * sizeof(char *);
-
-                       for (i = 0; (*result)->h_addr_list[i]; i++, pbuffer++)
-                       {
-                               memcpy(buffer, (*result)->h_addr_list[i], (*result)->h_length);
-                       resultbuf->h_addr_list[i] = buffer;
-                       buffer += (*result)->h_length;
-               }
-                       resultbuf->h_addr_list[i] = NULL;
-                       pbuffer++;
-                           
-               resultbuf->h_aliases = pbuffer;
-
-                       for (i = 0; (*result)->h_aliases[i]; i++, pbuffer++)
-                       {
-                               memcpy(buffer, (*result)->h_aliases[i], (*result)->h_length);
-                       resultbuf->h_aliases[i] = buffer;
-                       buffer += (*result)->h_length;
-               }
-                       resultbuf->h_aliases[i] = NULL;
-                       pbuffer++;
-
-                       /* Place at end for cleaner alignment */                        
-                       buffer = MAXALIGN(buffer);
-                       strcpy(buffer, (*result)->h_name);
-                       resultbuf->h_name = buffer;
-                       buffer += strlen(resultbuf->h_name) + 1;
-
-                       *result = resultbuf;
-               }
-               else
-               {
-                       *result = NULL;
-                       errno = ERANGE;
-               }
-       }
-#endif
-
        if (*result != NULL)
                *herrno = h_errno;
                
-#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETHOSTBYNAME_R)
-       pthread_mutex_unlock(&gethostbyname_lock);
-#endif
-
        if (*result != NULL)
                return 0;
        else
index 4c62ce4421705800a4e2b6612e19a370892bf02a..dd750bdc997b0e0e033b93554515de6321d586b8 100644 (file)
@@ -3,4 +3,7 @@ case $host_os in
 esac
 
 THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=no                # verified 4.3 2003-09-26
+# verified 4.3.1 2004-02-11
+STRERROR_THREADSAFE=yes
+GETPWUID_THREADSAFE=yes
+GETHOSTBYNAME_THREADSAFE=yes
index 2b155d12db9cdbce954ee2e8a9dae3b3e687eca8..c78b87bd76157c2c6b43ac2f49e61c70c0b4f6ce 100644 (file)
@@ -2,8 +2,7 @@ case $host_cpu in
   alpha*)   CFLAGS="-O";;  # alpha has problems with -O2
 esac
 
-THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=yes
+# tools/thread/thread_test must be run
 THREAD_CPPFLAGS="-D_THREAD_SAFE"
 case $host_os in
        freebsd2*|freebsd3*|freebsd4*) THREAD_LIBS="-pthread";;
index 529da9c1694e84d9ea05d73ab64e9dc61bd0cd8a..7469b331078b7b98f90d12341df9ef84d076d12a 100644 (file)
@@ -1,7 +1,6 @@
 # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
 CPPFLAGS="-D_GNU_SOURCE"
 
-THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=yes       # Debian kernel 2.2 2003-09-27
+# tools/thread/thread_test must be run
 THREAD_CPPFLAGS="-D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
 THREAD_LIBS="-lpthread"
index 0d119a0136183f43de1e428b05fd0615805b7119..1cb953c7fb524af2f92492920857ceee2592f8eb 100644 (file)
@@ -1,2 +1 @@
-THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=yes       # 1.6 2003-09-14
+# tools/thread/thread_test must be run
index 9d2d6b81c1c4c5305556d6c44d15de20b5482cb4..c331ed7f3dc25dc9ee1f2539919313a2c1af9d6e 100644 (file)
@@ -3,8 +3,7 @@ if test "$GCC" != yes ; then
   CFLAGS="-O -ieee"
 fi
 
-THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=no                # 4.0 2003-09-13
+# tools/thread/thread_test must be run
 if test "$GCC" = yes
 then   THREAD_LIBS="-pthread"
 else   THREAD_CPPFLAGS="-pthread"
index 489bece9489b45559b911471fd3d5a90fa265fdb..7534c7fe578e79cfda026ca20077b1557782d974 100644 (file)
@@ -9,8 +9,7 @@ case $host in
   i?86-*-solaris*)   need_tas=yes; tas_file=solaris_i386.s ;;
 esac
 
-THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=yes       # 5.6 2003-09-13
+# tools/thread/thread_test must be run
 if test "$GCC" = yes 
 then   THREAD_LIBS="-pthread"
 else   THREAD_CPPFLAGS="-mt"
index dc469873ccc740cdfd202d4b26dc5a82e26e84aa..c1af94b5b4dc2bd18409388eab43b4ac7ca8ddb4 100644 (file)
@@ -24,6 +24,5 @@ __EOF__
   THREAD_CPPFLAGS="-K pthread"
 fi
 
-THREAD_SUPPORT=yes
-NEED_REENTRANT_FUNCS=no                # verified 7.1.3 2003-09-03
+# tools/thread/thread_test must be run
 THREAD_CPPFLAGS="$THREAD_CPPFLAGS -D_REENTRANT"
index 654bb155f5c9f67329396033a692d913abff3917..a09c8fca02d2ef495434edffee4602d2895155bf 100644 (file)
@@ -6,7 +6,7 @@
  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- *     $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.6 2003/12/19 23:29:15 momjian Exp $
+ *     $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.7 2004/02/11 21:44:06 momjian Exp $
  *
  *     This program tests to see if your standard libc functions use
  *     pthread_setspecific()/pthread_getspecific() to be thread-safe.
 void func_call_1(void);
 void func_call_2(void);
 
-#ifndef HAVE_GETADDRINFO
-struct hostent *hostent_p1;
-struct hostent *hostent_p2;
-#endif
+char *strerror_p1;
+char *strerror_p2;
 
 struct passwd *passwd_p1;
 struct passwd *passwd_p2;
 
-char *strerror_p1;
-char *strerror_p2;
+struct hostent *hostent_p1;
+struct hostent *hostent_p2;
 
 int main(int argc, char *argv[])
 {
@@ -64,48 +62,34 @@ defines to your template/$port file before compiling this program.\n\n"
        pthread_join(thread1, NULL);
        pthread_join(thread2, NULL);
 
-#ifndef HAVE_GETADDRINFO
-       if (hostent_p1 == hostent_p2)
-               printf("Your gethostbyname() is _not_ thread-safe\n");
-#endif
-       if (passwd_p1 == passwd_p2)
-               printf("Your getpwuid() is _not_ thread-safe\n");
-       if (strerror_p1 == strerror_p2)
-               printf("Your strerror() is _not_ thread-safe\n");
-
-       if (
-#ifndef HAVE_GETADDRINFO
-               hostent_p1 != hostent_p2 &&
-#endif
-               passwd_p1 != passwd_p2 &&
-               strerror_p1 != strerror_p2)
-       {
-               printf("All your non-*_r functions are thread-safe.\n");
-               printf("Add this to your template/$port file:\n\n");
-               printf("NEED_REENTRANT_FUNCS=no\n");
-       }
+       printf("Add this to your template/$port file:\n\n");
+
+       if (strerror_p1 != strerror_p2)
+               printf("STRERROR_THREADSAFE=yes\n");
        else
-       {
-               printf("Not all non-*_r functions are thread-safe.\n");
-               printf("Add this to your template/$port file:\n\n");
-               printf("NEED_REENTRANT_FUNCS=yes\n");
-       }
+               printf("STRERROR_THREADSAFE=no\n");
+
+       if (passwd_p1 != passwd_p2)
+               printf("GETPWUID_THREADSAFE=yes\n");
+       else
+               printf("GETPWUID_THREADSAFE=no\n");
 
+       if (hostent_p1 != hostent_p2)
+               printf("GETHOSTBYNAME_THREADSAFE=yes\n");
+       else
+               printf("GETHOSTBYNAME_THREADSAFE=no\n");
+       
        return 0;
 }
 
 void func_call_1(void) {
        void *p;
 
-#ifndef HAVE_GETADDRINFO
-       hostent_p1 = gethostbyname("yahoo.com");
-       p = gethostbyname("slashdot.org");
-       if (hostent_p1 != p)
-       {
-               printf("Your gethostbyname() changes the static memory area between calls\n");
-               hostent_p1 = NULL;      /* force thread-safe failure report */
-       }
-#endif
+       strerror_p1 = strerror(EACCES);
+       /*
+        *      If strerror() uses sys_errlist, the pointer might change for different
+        *      errno values, so we don't check to see if it varies within the thread.
+        */
 
        passwd_p1 = getpwuid(0);
        p = getpwuid(1);
@@ -115,26 +99,24 @@ void func_call_1(void) {
                passwd_p1 = NULL;       /* force thread-safe failure report */
        }
 
-       strerror_p1 = strerror(EACCES);
-       /*
-        *      If strerror() uses sys_errlist, the pointer might change for different
-        *      errno values, so we don't check to see if it varies within the thread.
-        */
+       hostent_p1 = gethostbyname("yahoo.com");
+       p = gethostbyname("slashdot.org");
+       if (hostent_p1 != p)
+       {
+               printf("Your gethostbyname() changes the static memory area between calls\n");
+               hostent_p1 = NULL;      /* force thread-safe failure report */
+       }
 }
 
 
 void func_call_2(void) {
        void *p;
 
-#ifndef HAVE_GETADDRINFO
-       hostent_p2 = gethostbyname("google.com");
-       p = gethostbyname("postgresql.org");
-       if (hostent_p2 != p)
-       {
-               printf("Your gethostbyname() changes the static memory area between calls\n");
-               hostent_p2 = NULL;      /* force thread-safe failure report */
-       }
-#endif
+       strerror_p2 = strerror(EINVAL);
+       /*
+        *      If strerror() uses sys_errlist, the pointer might change for different
+        *      errno values, so we don't check to see if it varies within the thread.
+        */
 
        passwd_p2 = getpwuid(2);
        p = getpwuid(3);
@@ -144,9 +126,11 @@ void func_call_2(void) {
                passwd_p2 = NULL;       /* force thread-safe failure report */
        }
 
-       strerror_p2 = strerror(EINVAL);
-       /*
-        *      If strerror() uses sys_errlist, the pointer might change for different
-        *      errno values, so we don't check to see if it varies within the thread.
-        */
+       hostent_p2 = gethostbyname("google.com");
+       p = gethostbyname("postgresql.org");
+       if (hostent_p2 != p)
+       {
+               printf("Your gethostbyname() changes the static memory area between calls\n");
+               hostent_p2 = NULL;      /* force thread-safe failure report */
+       }
 }