summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-03-02 19:29:31 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-03-02 19:29:31 +0000
commite489ec65b4b2ab0a050d8dbf7ec0658e6decb8b3 (patch)
treed3cc89011baa2b7f2e8b7c42998a4df93b36dbc9
parentd761e87224d3e60c5355ac3e3468835fc3b4be92 (diff)
downloadxorg-proto-x11proto-e489ec65b4b2ab0a050d8dbf7ec0658e6decb8b3.tar.gz
Patch #2007 <https://bugs.freedesktop.org/attachment.cgi?id=2007>XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_1
1) Fix Solaris #ifdefs to choose between UI/SVR4 (early POSIX draft) and POSIX standard thread API's correctly. 2) Fix calls to POSIX standard versions to check errors correctly. (POSIX defines a return value of 0 on success, errno value on error, but the macros were checking for -1 on error.)
-rw-r--r--Xos_r.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/Xos_r.h b/Xos_r.h
index 590392c..b63b2da 100644
--- a/Xos_r.h
+++ b/Xos_r.h
@@ -1,4 +1,5 @@
/* $Xorg: Xos_r.h,v 1.4 2001/02/09 02:03:22 xorgcvs Exp $ */
+/* $XdotOrg: $ */
/*
Copyright 1996, 1998 The Open Group
@@ -190,10 +191,12 @@ extern void XtProcessUnlock(
#endif /* !defined WIN32 */
/*
- * Solaris 2.5 has SVR4 thread-safe API, but defines the POSIX
- * thread-safe feature test macro. Fix the feature test macro.
+ * Solaris defines the POSIX thread-safe feature test macro, but
+ * uses the older SVR4 thread-safe functions unless the POSIX ones
+ * are specifically requested. Fix the feature test macro.
*/
-#if defined(sun) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)
+#if defined(sun) && defined(_POSIX_THREAD_SAFE_FUNCTIONS) && \
+ (_POSIX_C_SOURCE - 0 < 199506L) && !defined(_POSIX_PTHREAD_SEMANTICS)
# undef _POSIX_THREAD_SAFE_FUNCTIONS
#endif
@@ -368,11 +371,11 @@ typedef struct {
} _Xgetpwparams;
typedef int _Xgetpwret;
# define _XGetpwuid(u,p) \
-((getpwuid_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf),&(p).pwp) == -1) ? \
- NULL : (p).pwp)
+((getpwuid_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf),&(p).pwp) == 0) ? \
+ (p).pwp : NULL)
# define _XGetpwnam(u,p) \
-((getpwnam_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf),&(p).pwp) == -1) ? \
- NULL : (p).pwp)
+((getpwnam_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf),&(p).pwp) == 0) ? \
+ (p).pwp : NULL)
#endif /* X_INCLUDE_PWD_H */
#if defined(X_INCLUDE_PWD_H) && !defined(_XOS_INCLUDED_PWD_H)