summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_Thread.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/OS_NS_Thread.inl')
-rw-r--r--ACE/ace/OS_NS_Thread.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/OS_NS_Thread.inl b/ACE/ace/OS_NS_Thread.inl
index fb6aa2860a6..af1ff53ab0d 100644
--- a/ACE/ace/OS_NS_Thread.inl
+++ b/ACE/ace/OS_NS_Thread.inl
@@ -421,7 +421,7 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv,
result),
int, result);
// We need to adjust this to make the POSIX and Solaris return
- // values consistent. EAGAIN is from Pthreads DRAFT4 (HP-UX 10.20 and down)
+ // values consistent. EAGAIN is from Pthreads DRAFT4
if (result == -1 &&
(errno == ETIMEDOUT || errno == EAGAIN))
errno = ETIME;
@@ -1601,8 +1601,8 @@ ACE_OS::sema_init (ACE_sema_t *s,
# else
if (name)
{
-# if defined (sun) || defined (HPUX)
- // Solaris and HP-UX require the name to start with a slash. Solaris
+# if defined (sun)
+ // Solaris require the name to start with a slash. Solaris
// further requires that there be no other slashes than the first.
const char *last_slash = ACE_OS::strrchr (name, '/');
char name2[MAXPATHLEN];
@@ -1616,7 +1616,7 @@ ACE_OS::sema_init (ACE_sema_t *s,
else
name = last_slash; // Chop off chars preceding last slash
# endif /* sun */
-# endif /* sun || HPUX */
+# endif /* sun */
ACE_ALLOCATOR_RETURN (s->name_,
ACE_OS::strdup (name),