summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.i21
-rw-r--r--ace/OS_Dirent.inl3
-rw-r--r--ace/config-hpux-11.00.h2
3 files changed, 15 insertions, 11 deletions
diff --git a/ace/OS.i b/ace/OS.i
index 225b060db5a..bd161d6d48d 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -6776,6 +6776,7 @@ ACE_OS::getpwnam_r (const char *name, struct passwd *pwent,
# if !defined (ACE_LACKS_PWD_REENTRANT_FUNCTIONS)
# if defined (ACE_HAS_PTHREADS_STD) && \
!defined (ACE_HAS_STHREADS) || \
+ defined (HPUX_11) || \
defined (__USLC__) // Added by Roland Gigler for SCO UnixWare 7.
struct passwd *result;
int status;
@@ -9693,27 +9694,27 @@ ACE_OS::ctime_r (const time_t *t, ACE_TCHAR *buf, int buflen)
#if defined (ACE_HAS_PACE)
ACE_UNUSED_ARG (buflen);
ACE_OSCALL_RETURN (::pace_ctime_r (t, buf), ACE_TCHAR*, 0);
-# elif defined (ACE_HAS_REENTRANT_FUNCTIONS)
+#elif defined (ACE_HAS_REENTRANT_FUNCTIONS)
# if defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R)
ACE_TCHAR *result;
-# if defined (DIGITAL_UNIX)
+# if defined (DIGITAL_UNIX)
ACE_OSCALL (::_Pctime_r (t, buf), ACE_TCHAR *, 0, result);
-# else /* DIGITAL_UNIX */
+# else /* DIGITAL_UNIX */
ACE_OSCALL (::ctime_r (t, buf), ACE_TCHAR *, 0, result);
-# endif /* DIGITAL_UNIX */
+# endif /* DIGITAL_UNIX */
if (result != 0)
::strncpy (buf, result, buflen);
return buf;
# else /* ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R */
-# if defined (ACE_CTIME_R_RETURNS_INT)
+# if defined (ACE_CTIME_R_RETURNS_INT)
return (::ctime_r (t, buf, buflen) == -1 ? 0 : buf);
-# else /* ACE_CTIME_R_RETURNS_INT */
+# else /* ACE_CTIME_R_RETURNS_INT */
ACE_OSCALL_RETURN (::ctime_r (t, buf, buflen), ACE_TCHAR *, 0);
-# endif /* ACE_CTIME_R_RETURNS_INT */
+# endif /* ACE_CTIME_R_RETURNS_INT */
# endif /* ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R */
-# else /* ACE_HAS_REENTRANT_FUNCTIONS */
+#else /* ACE_HAS_REENTRANT_FUNCTIONS */
# if defined(ACE_PSOS) && ! defined (ACE_PSOS_HAS_TIME)
::strncpy(buf, "ctime-return",buflen);
return buf;
@@ -9728,8 +9729,8 @@ ACE_OS::ctime_r (const time_t *t, ACE_TCHAR *buf, int buflen)
if (result != 0)
ACE_OS::strncpy (buf, result, buflen);
return buf;
-# endif /* ACE_PSOS && !ACE_PSOS_HAS_TIME */
-# endif /* ACE_HAS_PACE */
+# endif /* ACE_PSOS && !ACE_PSOS_HAS_TIME */
+#endif /* ACE_HAS_PACE */
}
#endif /* !ACE_HAS_WINCE */
diff --git a/ace/OS_Dirent.inl b/ace/OS_Dirent.inl
index 19d2bc2031f..0ffc2dcfe7f 100644
--- a/ace/OS_Dirent.inl
+++ b/ace/OS_Dirent.inl
@@ -138,7 +138,8 @@ ACE_OS_Dirent::readdir_r (DIR *dirp,
(_FILE_OFFSET_BITS == 64))) || \
(!defined (sun) && (defined (ACE_HAS_PTHREADS_STD) || \
defined (ACE_HAS_PTHREADS_DRAFT7) || \
- defined (__USE_POSIX)))
+ defined (__USE_POSIX) || \
+ defined (HPUX_11)))
# if defined (__GNUG__) && defined (DIGITAL_UNIX)
return readdir_r (dirp, entry, result);
# else
diff --git a/ace/config-hpux-11.00.h b/ace/config-hpux-11.00.h
index 9af7e1303db..39ef2c9ab5b 100644
--- a/ace/config-hpux-11.00.h
+++ b/ace/config-hpux-11.00.h
@@ -248,6 +248,8 @@
// Platform supports reentrant functions (all the POSIX *_r functions).
#define ACE_HAS_REENTRANT_FUNCTIONS
+// ctime_r and asctime_r conform to POSIX.1c (2 param version)
+#define ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R
// HP-UX 11 has reentrant netdb functions. The catch is that the old
// functions (gethostbyname, etc.) are thread-safe and the _r versions are