Loading...
pthreads/pthread_cond.c Libc-391 Libc-583
--- Libc/Libc-391/pthreads/pthread_cond.c
+++ Libc/Libc-583/pthreads/pthread_cond.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2003, 2007, 2008 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -51,9 +51,86 @@
 #include "pthread_internals.h"
 #include <sys/time.h>              /* For struct timespec and getclock(). */
 #include <stdio.h>
-    
-extern void _pthread_mutex_remove(pthread_mutex_t *, pthread_t);
+
+#ifdef PLOCKSTAT
+#include "plockstat.h"
+#else /* !PLOCKSTAT */
+#define PLOCKSTAT_MUTEX_RELEASE(x, y)
+#endif /* PLOCKSTAT */
+
+
+extern int __semwait_signal(int, int, int, int, int64_t, int32_t);
+extern int _pthread_cond_init(pthread_cond_t *, const pthread_condattr_t *, int);
 extern int __unix_conforming;
+
+#ifdef PR_5243343
+/* 5243343 - temporary hack to detect if we are running the conformance test */
+extern int PR_5243343_flag;
+#endif /* PR_5243343 */
+
+#if  defined(__i386__) || defined(__x86_64__)
+__private_extern__ int __new_pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime, int isRelative, int isconforming);
+extern int _new_pthread_cond_init(pthread_cond_t *, const pthread_condattr_t *, int);
+extern int _new_pthread_cond_destroy(pthread_cond_t *);
+extern int _new_pthread_cond_destroy_locked(pthread_cond_t *);
+int _new_pthread_cond_broadcast(pthread_cond_t *cond);
+int _new_pthread_cond_signal_thread_np(pthread_cond_t *cond, pthread_t thread);
+int _new_pthread_cond_signal(pthread_cond_t *cond);
+int _new_pthread_cond_timedwait_relative_np(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime);
+int _new_pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
+int _new_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime);
+static void _new_cond_cleanup(void *arg);
+static void _new_cond_dropwait(npthread_cond_t * cond);
+
+
+#if defined(__LP64__)
+#define  COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt) \
+{ \
+	if (cond->misalign != 0) { \
+		c_lseqcnt = &cond->c_seq[1]; \
+		c_useqcnt = &cond->c_seq[2]; \
+	} else { \
+		/* aligned */ \
+		c_lseqcnt = &cond->c_seq[0]; \
+		c_useqcnt = &cond->c_seq[1]; \
+	} \
+}
+#else /* __LP64__ */
+#define  COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt) \
+{ \
+	if (cond->misalign != 0) { \
+		c_lseqcnt = &cond->c_seq[1]; \
+		c_useqcnt = &cond->c_seq[2]; \
+	} else { \
+		/* aligned */ \
+		c_lseqcnt = &cond->c_seq[0]; \
+		c_useqcnt = &cond->c_seq[1]; \
+	} \
+}
+#endif /* __LP64__ */
+
+
+#define _KSYN_TRACE_ 0
+
+#if _KSYN_TRACE_
+/* The Function qualifiers  */
+#define DBG_FUNC_START          1
+#define DBG_FUNC_END            2
+#define DBG_FUNC_NONE           0
+
+int __kdebug_trace(uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t);
+
+#define _KSYN_TRACE_UM_LOCK     0x9000060
+#define _KSYN_TRACE_UM_UNLOCK   0x9000064
+#define _KSYN_TRACE_UM_MHOLD    0x9000068
+#define _KSYN_TRACE_UM_MDROP    0x900006c
+#define _KSYN_TRACE_UM_CVWAIT   0x9000070
+#define _KSYN_TRACE_UM_CVSIG    0x9000074
+#define _KSYN_TRACE_UM_CVBRD    0x9000078
+
+#endif /* _KSYN_TRACE_ */
+#endif /* __i386__ || __x86_64__ */
+
 
 #ifndef BUILDING_VARIANT /* [ */
 
@@ -67,16 +144,23 @@
 	int sig = cond->sig;
 
 	/* to provide backwards compat for apps using united condtn vars */
-	if((sig != _PTHREAD_COND_SIG) && (sig !=_PTHREAD_COND_SIG_init))
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
 		return(EINVAL);
 
 	LOCK(cond->lock);
 	if (cond->sig == _PTHREAD_COND_SIG)
 	{
+#if  defined(__i386__) || defined(__x86_64__)
+		if (cond->pshared == PTHREAD_PROCESS_SHARED) {
+			ret = _new_pthread_cond_destroy_locked(cond);
+			UNLOCK(cond->lock);
+			return(ret);
+		}
+#endif /* __i386__ || __x86_64__ */
 		if (cond->busy == (pthread_mutex_t *)NULL)
 		{
 			cond->sig = _PTHREAD_NO_SIG;
-			ret = ESUCCESS;
+			ret = 0;
 		} else
 			ret = EBUSY;
 	} else
@@ -85,35 +169,6 @@
 	return (ret);
 }
 
-/*
- * Initialize a condition variable.  Note: 'attr' is ignored.
- */
-static int       
-_pthread_cond_init(pthread_cond_t *cond,
-		  const pthread_condattr_t *attr)
-{
-	cond->next = (pthread_cond_t *)NULL;
-	cond->prev = (pthread_cond_t *)NULL;
-	cond->busy = (pthread_mutex_t *)NULL;
-	cond->waiters = 0;
-	cond->sigspending = 0;
-	cond->sem = SEMAPHORE_NULL;
-	cond->sig = _PTHREAD_COND_SIG;
-	return (ESUCCESS);
-}
-
-/*
- * Initialize a condition variable.  This is the public interface.
- * We can't trust the lock, so initialize it first before taking
- * it.
- */
-int       
-pthread_cond_init(pthread_cond_t *cond,
-		  const pthread_condattr_t *attr)
-{
-	LOCK_INIT(cond->lock);
-	return (_pthread_cond_init(cond, attr));
-}
 
 /*
  * Signal a condition variable, waking up all threads waiting for it.
@@ -126,7 +181,7 @@
 	int sig = cond->sig;
 
 	/* to provide backwards compat for apps using united condtn vars */
-	if((sig != _PTHREAD_COND_SIG) && (sig !=_PTHREAD_COND_SIG_init))
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
 		return(EINVAL);
 
 	LOCK(cond->lock);
@@ -136,18 +191,24 @@
 
 		if (cond->sig == _PTHREAD_COND_SIG_init)
 		{
-			_pthread_cond_init(cond, NULL);
-			res = ESUCCESS;
+			_pthread_cond_init(cond, NULL, 0);
+			res = 0;
 		} else 
 			res = EINVAL;  /* Not a condition variable */
 		UNLOCK(cond->lock);
 		return (res);
 	}
+#if  defined(__i386__) || defined(__x86_64__)
+	else if (cond->pshared == PTHREAD_PROCESS_SHARED) {
+		UNLOCK(cond->lock);
+		return(_new_pthread_cond_broadcast(cond));
+	}
+#endif /* __i386__ || __x86_64__ */
 	else if ((sem = cond->sem) == SEMAPHORE_NULL)
 	{
 		/* Avoid kernel call since there are no waiters... */
 		UNLOCK(cond->lock);
-		return (ESUCCESS);
+		return (0);
 	}
 	cond->sigspending++;
 	UNLOCK(cond->lock);
@@ -164,7 +225,7 @@
 	UNLOCK(cond->lock);
 	if (kern_res != KERN_SUCCESS)
 		return (EINVAL);
-	return (ESUCCESS);
+	return (0);
 }
 
 /*
@@ -178,9 +239,9 @@
 	int sig = cond->sig;
 
 	/* to provide backwards compat for apps using united condtn vars */
-	if((sig != _PTHREAD_COND_SIG) && (sig !=_PTHREAD_COND_SIG_init))
+
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
 		return(EINVAL);
-
 	LOCK(cond->lock);
 	if (cond->sig != _PTHREAD_COND_SIG)
 	{
@@ -188,19 +249,24 @@
 
 		if (cond->sig == _PTHREAD_COND_SIG_init) 
 		{
-			_pthread_cond_init(cond, NULL);
-			ret = ESUCCESS;
-		}
-		else
+			_pthread_cond_init(cond, NULL, 0);
+			ret = 0;
+		} else 
 			ret = EINVAL; /* Not a condition variable */
 		UNLOCK(cond->lock);
 		return (ret);
 	}
+#if  defined(__i386__) || defined(__x86_64__)
+	else if (cond->pshared == PTHREAD_PROCESS_SHARED) {
+		UNLOCK(cond->lock);
+		return(_new_pthread_cond_signal_thread_np(cond, thread));
+	}
+#endif /* __i386__ || __x86_64__ */
 	else if ((sem = cond->sem) == SEMAPHORE_NULL)
 	{
 		/* Avoid kernel call since there are not enough waiters... */
 		UNLOCK(cond->lock);
-		return (ESUCCESS);
+		return (0);
 	}
 	cond->sigspending++;
 	UNLOCK(cond->lock);
@@ -229,7 +295,7 @@
 	UNLOCK(cond->lock);
 	if (kern_res != KERN_SUCCESS)
 		return (EINVAL);
-	return (ESUCCESS);
+	return (0);
 }
 
 /*
@@ -288,10 +354,23 @@
 	}
 }
 
-static void cond_cleanup(void *arg)
+static void 
+cond_cleanup(void *arg)
 {
     pthread_cond_t *cond = (pthread_cond_t *)arg;
     pthread_mutex_t *mutex;
+// 4597450: begin
+    pthread_t thread = pthread_self();
+	int thcanceled = 0;
+
+	LOCK(thread->lock);
+	thcanceled = (thread->detached & _PTHREAD_WASCANCEL);
+	UNLOCK(thread->lock);
+
+	if (thcanceled == 0)
+		return;
+
+// 4597450: end
     LOCK(cond->lock);
     mutex = cond->busy;
     cond->waiters--;
@@ -300,6 +379,7 @@
         cond->busy = (pthread_mutex_t *)NULL;
     }
     UNLOCK(cond->lock);
+
     /*
     ** Can't do anything if this fails -- we're on the way out
     */
@@ -310,6 +390,8 @@
  * Suspend waiting for a condition variable.
  * Note: we have to keep a list of condition variables which are using
  * this same mutex variable so we can detect invalid 'destroy' sequences.
+ * If isconforming < 0, we skip the _pthread_testcancel(), but keep the
+ * remaining conforming behavior..
  */
 __private_extern__ int       
 _pthread_cond_wait(pthread_cond_t *cond, 
@@ -319,26 +401,41 @@
 		    int isconforming)
 {
 	int res;
-	kern_return_t kern_res;
-	int wait_res;
+	kern_return_t kern_res = KERN_SUCCESS;
+	int wait_res = 0;
 	pthread_mutex_t *busy;
-	mach_timespec_t then;
+	mach_timespec_t then = {0, 0};
 	struct timespec cthen = {0,0};
 	int sig = cond->sig;
+	int msig = mutex->sig;
+extern void _pthread_testcancel(pthread_t thread, int isconforming);
 
 	/* to provide backwards compat for apps using united condtn vars */
-	if((sig != _PTHREAD_COND_SIG) && (sig !=_PTHREAD_COND_SIG_init))
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
 		return(EINVAL);
+
+	if (isconforming) {
+		if((msig != _PTHREAD_MUTEX_SIG) && (msig != _PTHREAD_MUTEX_SIG_init))
+			return(EINVAL);
+		if (isconforming > 0)
+			_pthread_testcancel(pthread_self(), 1);
+	}
 	LOCK(cond->lock);
 	if (cond->sig != _PTHREAD_COND_SIG)
 	{
 		if (cond->sig != _PTHREAD_COND_SIG_init)
 		{
-			UNLOCK(cond->lock);
-			return (EINVAL);        /* Not a condition variable */
+				UNLOCK(cond->lock);
+				return (EINVAL);        /* Not a condition variable */
 		}
-		_pthread_cond_init(cond, NULL);
-	}
+		_pthread_cond_init(cond, NULL, 0);
+	}
+#if  defined(__i386__) || defined(__x86_64__)
+	else if (cond->pshared == PTHREAD_PROCESS_SHARED) {
+		UNLOCK(cond->lock);
+		return(__new_pthread_cond_wait(cond, mutex, abstime, isRelative, isconforming));
+	}
+#endif /* __i386__ || __x86_64__ */
 
 	if (abstime) {
 		if (!isconforming)
@@ -372,17 +469,47 @@
 				return EINVAL;
 			}
 		} else {
+			if (isRelative == 0) {
+				/* preflight the checks for failures */
+				struct timespec now;
+				struct timeval tv;
+				gettimeofday(&tv, NULL);
+				TIMEVAL_TO_TIMESPEC(&tv, &now);
+
+				/* Compute relative time to sleep */
+				then.tv_nsec = abstime->tv_nsec - now.tv_nsec;
+				then.tv_sec = abstime->tv_sec - now.tv_sec;
+				if (then.tv_nsec < 0)
+				{
+					then.tv_nsec += NSEC_PER_SEC;
+					then.tv_sec--;
+				}
+				if (((int)then.tv_sec < 0) ||
+					((then.tv_sec == 0) && (then.tv_nsec == 0)))
+				{
+					UNLOCK(cond->lock);
+					return ETIMEDOUT;
+				}
+				if (then.tv_nsec >= NSEC_PER_SEC) {
+					UNLOCK(cond->lock);
+					return EINVAL;
+				}
+			}
+			/* we can cleanup this code and pass the calculated time
+			 * to the kernel. But kernel is going to do the same. TILL
+			 * we change the kernel do this anyway
+			 */
 			cthen.tv_sec = abstime->tv_sec;
-            cthen.tv_nsec = abstime->tv_nsec;
-            if ((cthen.tv_sec < 0) || (cthen.tv_nsec < 0)) {
-                UNLOCK(cond->lock);
-                return EINVAL;
-            }
-            if (cthen.tv_nsec >= NSEC_PER_SEC) {
-                UNLOCK(cond->lock);
-                return EINVAL;
-            }
-        }
+            		cthen.tv_nsec = abstime->tv_nsec;
+            		if ((cthen.tv_sec < 0) || (cthen.tv_nsec < 0)) {
+                		UNLOCK(cond->lock);
+                		return EINVAL;
+            		}
+            		if (cthen.tv_nsec >= NSEC_PER_SEC) {
+                		UNLOCK(cond->lock);
+                		return EINVAL;
+            		}
+        	}
 	}
 
 	if (++cond->waiters == 1)
@@ -399,12 +526,11 @@
 	}
 	UNLOCK(cond->lock);
 	
-#if defined(DEBUG)
-	_pthread_mutex_remove(mutex, pthread_self());
-#endif
 	LOCK(mutex->lock);
-	if (--mutex->lock_count == 0)
-	{
+	if (--mutex->mtxopts.options.lock_count == 0)
+	{
+		PLOCKSTAT_MUTEX_RELEASE(mutex, (mutex->mtxopts.options.type == PTHREAD_MUTEX_RECURSIVE)? 1:0);
+
 		if (mutex->sem == SEMAPHORE_NULL)
 			mutex->sem = new_sem_from_pool();
 		mutex->owner = _PTHREAD_MUTEX_OWNER_SWITCHING;
@@ -419,10 +545,11 @@
 		} else {
             pthread_cleanup_push(cond_cleanup, (void *)cond);
             wait_res = __semwait_signal(cond->sem, mutex->sem, abstime != NULL, isRelative,
-			cthen.tv_sec, cthen.tv_nsec);
+                                        (int64_t)cthen.tv_sec, (int32_t)cthen.tv_nsec);
             pthread_cleanup_pop(0);
 		}
 	} else {
+		PLOCKSTAT_MUTEX_RELEASE(mutex, (mutex->mtxopts.options.type == PTHREAD_MUTEX_RECURSIVE)? 1:0);
 		UNLOCK(mutex->lock);
 		if (!isconforming) {
 			if (abstime) {
@@ -432,8 +559,8 @@
 			}
 		 } else {
 				pthread_cleanup_push(cond_cleanup, (void *)cond);
-                wait_res = __semwait_signal(cond->sem, NULL, abstime != NULL, isRelative,
-			cthen.tv_sec, cthen.tv_nsec);
+                wait_res = __semwait_signal(cond->sem, 0, abstime != NULL, isRelative,
+                                            (int64_t)cthen.tv_sec, (int32_t)cthen.tv_nsec);
                 pthread_cleanup_pop(0);
 		}
 
@@ -447,13 +574,13 @@
 		cond->busy = (pthread_mutex_t *)NULL;
 	}
 	UNLOCK(cond->lock);
-	if ((res = pthread_mutex_lock(mutex)) != ESUCCESS)
+	if ((res = pthread_mutex_lock(mutex)) != 0)
 		return (res);
 
 	if (!isconforming) {
 		/* KERN_ABORTED can be treated as a spurious wakeup */
 		if ((kern_res == KERN_SUCCESS) || (kern_res == KERN_ABORTED))
-			return (ESUCCESS);
+			return (0);
 		else if (kern_res == KERN_OPERATION_TIMED_OUT)
 			return (ETIMEDOUT);
 		return (EINVAL);
@@ -486,14 +613,15 @@
 pthread_condattr_init(pthread_condattr_t *attr)
 {
         attr->sig = _PTHREAD_COND_ATTR_SIG;
-        return (ESUCCESS);
+        attr->pshared = _PTHREAD_DEFAULT_PSHARED;
+        return (0);
 }
 
 int       
 pthread_condattr_destroy(pthread_condattr_t *attr)
 {
         attr->sig = _PTHREAD_NO_SIG;  /* Uninitialized */
-        return (ESUCCESS);
+        return (0);
 }
 
 int
@@ -502,8 +630,8 @@
 {
         if (attr->sig == _PTHREAD_COND_ATTR_SIG)
         {
-                *pshared = (int)PTHREAD_PROCESS_PRIVATE;
-                return (ESUCCESS);
+                *pshared = (int)attr->pshared;
+                return (0);
         } else
         {
                 return (EINVAL); /* Not an initialized 'attribute' structure */
@@ -511,15 +639,48 @@
 }
 
 
+__private_extern__ int       
+_pthread_cond_init(pthread_cond_t *cond,
+		  const pthread_condattr_t *attr,
+		  int conforming)
+{
+	cond->next = (pthread_cond_t *)NULL;
+	cond->prev = (pthread_cond_t *)NULL;
+	cond->busy = (pthread_mutex_t *)NULL;
+	cond->waiters = 0;
+	cond->sigspending = 0;
+	if (conforming) {
+		if (attr)
+			cond->pshared = attr->pshared;
+		else
+			cond->pshared = _PTHREAD_DEFAULT_PSHARED;
+	} else
+		cond->pshared = _PTHREAD_DEFAULT_PSHARED;
+	cond->sem = SEMAPHORE_NULL;
+	cond->sig = _PTHREAD_COND_SIG;
+	return (0);
+}
+
+
+/* temp home till pshared is fixed correctly */
 int
 pthread_condattr_setpshared(pthread_condattr_t * attr, int pshared)
 {
+
         if (attr->sig == _PTHREAD_COND_ATTR_SIG)
         {
+#if __DARWIN_UNIX03
+#ifdef PR_5243343
+                if (( pshared == PTHREAD_PROCESS_PRIVATE) || (pshared == PTHREAD_PROCESS_SHARED && PR_5243343_flag))
+#else /* !PR_5243343 */
+                if (( pshared == PTHREAD_PROCESS_PRIVATE) || (pshared == PTHREAD_PROCESS_SHARED))
+#endif /* PR_5243343 */
+#else /* __DARWIN_UNIX03 */
                 if ( pshared == PTHREAD_PROCESS_PRIVATE)
+#endif /* __DARWIN_UNIX03 */
                 {
-			/* attr->pshared = pshared */
-                        return (ESUCCESS);
+						attr->pshared = pshared;
+                        return (0);
                 } else
                 {
                         return (EINVAL); /* Invalid parameter */
@@ -531,7 +692,642 @@
 
 }
 
+#if  defined(__i386__) || defined(__x86_64__)
+
+__private_extern__ int       
+_new_pthread_cond_init(pthread_cond_t *ocond,
+		  const pthread_condattr_t *attr,
+		  int conforming)
+{
+	npthread_cond_t * cond = (npthread_cond_t *)ocond;
+
+	cond->busy = (npthread_mutex_t *)NULL;
+	cond->c_seq[0] = 0;
+	cond->c_seq[1] = 0;
+	cond->c_seq[2] = 0;
+
+	cond->rfu = 0;
+	if (((uintptr_t)cond & 0x07) != 0) {
+		cond->misalign = 1;
+	} else {
+		cond->misalign = 0;
+	}
+	if (conforming) {
+		if (attr)
+			cond->pshared = attr->pshared;
+		else
+			cond->pshared = _PTHREAD_DEFAULT_PSHARED;
+	} else
+		cond->pshared = _PTHREAD_DEFAULT_PSHARED;
+	cond->sig = _PTHREAD_COND_SIG;
+	return (0);
+}
+
+int
+_new_pthread_cond_destroy(pthread_cond_t * ocond)
+{
+	npthread_cond_t *cond = (npthread_cond_t *)ocond;
+	int ret;
+
+	LOCK(cond->lock);
+	ret = _new_pthread_cond_destroy_locked(ocond);
+	UNLOCK(cond->lock);
+	
+	return(ret);
+}
+
+int       
+_new_pthread_cond_destroy_locked(pthread_cond_t * ocond)
+{
+	npthread_cond_t *cond = (npthread_cond_t *)ocond;
+	int ret;
+	int sig = cond->sig;
+	uint32_t * c_lseqcnt;
+	uint32_t * c_useqcnt;
+	uint32_t lgenval , ugenval;
+
+	/* to provide backwards compat for apps using united condtn vars */
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
+		return(EINVAL);
+
+	if (cond->sig == _PTHREAD_COND_SIG)
+	{
+		COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt);
+retry:
+		lgenval = *c_lseqcnt;
+		ugenval = *c_useqcnt;
+		if (lgenval == ugenval)
+		{
+			cond->sig = _PTHREAD_NO_SIG;
+			ret = 0;
+		} else
+			ret = EBUSY;
+	} else
+		ret = EINVAL; /* Not an initialized condition variable structure */
+	return (ret);
+}
+
+/*
+ * Signal a condition variable, waking up all threads waiting for it.
+ */
+int       
+_new_pthread_cond_broadcast(pthread_cond_t *ocond)
+{
+	npthread_cond_t * cond = (npthread_cond_t *)ocond;
+	int sig = cond->sig;
+	npthread_mutex_t * mutex;
+	uint32_t lgenval, ugenval, mgen, ugen, flags, mtxgen, mtxugen, notify;
+	int diffgen, retval, dropcount, mutexrefs;
+	uint64_t oldval64, newval64;
+	uint32_t * c_lseqcnt;
+	uint32_t * c_useqcnt;
+	uint32_t * pmtx = NULL;
+
+
+	/* to provide backwards compat for apps using united condtn vars */
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
+		return(EINVAL);
+
+	if (sig != _PTHREAD_COND_SIG)
+	{
+		int res;
+
+		LOCK(cond->lock);
+		if (cond->sig == _PTHREAD_COND_SIG_init)
+		{
+			_new_pthread_cond_init(ocond, NULL, 0);
+			res = 0;
+		} else  if (cond->sig != _PTHREAD_COND_SIG) {
+			res = EINVAL;  /* Not a condition variable */
+			UNLOCK(cond->lock);
+			return (res);
+		}
+		UNLOCK(cond->lock);
+	}
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVBRD | DBG_FUNC_START, (uint32_t)cond, 0, 0, 0, 0);
+#endif
+
+	COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt);
+retry:
+	lgenval = *c_lseqcnt;
+	ugenval = *c_useqcnt;
+	diffgen = lgenval - ugenval;	/* pendig waiters */
+ 
+	if (diffgen <= 0) {
+		return(0);
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVBRD | DBG_FUNC_END, (uint32_t)cond, 0, 0, 0, 0);
+#endif
+	}
+	
+	mutex = cond->busy;
+	
+	if (OSAtomicCompareAndSwap32(ugenval, ugenval+diffgen, (volatile int *)c_useqcnt) != TRUE) 
+		goto retry;
+
+#ifdef COND_MTX_WAITQUEUEMOVE
+
+	if ((mutex != NULL) && cond->pshared != PTHREAD_PROCESS_SHARED) {
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVBRD | DBG_FUNC_NONE, (uint32_t)cond, 1, diffgen, 0, 0);
+#endif
+		(void)__mtx_holdlock(mutex, diffgen, &flags, &pmtx, &mgen, &ugen);
+		mutexrefs = 1;	
+	} else {
+		if (cond->pshared != PTHREAD_PROCESS_SHARED)
+			flags = _PTHREAD_MTX_OPT_NOHOLD;
+		else
+			flags = _PTHREAD_MTX_OPT_NOHOLD | _PTHREAD_MTX_OPT_PSHARED;
+		mgen = ugen = 0;
+		mutexrefs = 0;	
+		pmtx = NULL;
+	}
+#else /* COND_MTX_WAITQUEUEMOVE */
+	
+	if (cond->pshared != PTHREAD_PROCESS_SHARED)
+		flags = _PTHREAD_MTX_OPT_NOHOLD;
+	else
+		flags = _PTHREAD_MTX_OPT_NOHOLD | _PTHREAD_MTX_OPT_PSHARED;
+	pmtx = NULL;
+	mgen = ugen = 0;
+	mutexrefs = 0;	
+#endif /* COND_MTX_WAITQUEUEMOVE */
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVBRD | DBG_FUNC_NONE, (uint32_t)cond, 3, diffgen, 0, 0);
+#endif
+	retval = __psynch_cvbroad(ocond, lgenval, diffgen, (pthread_mutex_t *)pmtx, mgen, ugen , (uint64_t)0,  flags);
+
+#ifdef COND_MTX_WAITQUEUEMOVE
+	if ((retval != -1) && (retval != 0)) {
+		if ((mutexrefs != 0) && (retval <= PTHRW_MAX_READERS/2)) {
+			dropcount = (retval);
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVBRD | DBG_FUNC_NONE, (uint32_t)cond, 2, dropcount, 0, 0);
+#endif
+			retval = __mtx_droplock(mutex, dropcount, &flags, &pmtx, &mtxgen, &mtxugen, &notify);
+		}
+	}
+#endif /* COND_MTX_WAITQUEUEMOVE */
+
+	oldval64 = (((uint64_t)(ugenval+diffgen)) << 32);
+	oldval64 |= lgenval;
+	newval64 = 0;
+
+	OSAtomicCompareAndSwap64(oldval64, newval64, (volatile int64_t *)c_lseqcnt);
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVBRD | DBG_FUNC_END, (uint32_t)cond, 0, 0, 0, 0);
+#endif
+	return(0);
+}
+
+
+/*
+ * Signal a condition variable, waking a specified thread.
+ */
+int       
+_new_pthread_cond_signal_thread_np(pthread_cond_t *ocond, pthread_t thread)
+{
+	npthread_cond_t * cond = (npthread_cond_t *)ocond;
+	int sig = cond->sig;
+	npthread_mutex_t  * mutex;
+	int retval, dropcount;
+	uint32_t lgenval, ugenval, diffgen, mgen, ugen, flags, mtxgen, mtxugen, notify;
+	uint32_t * c_lseqcnt;
+	uint32_t * c_useqcnt;
+	uint64_t oldval64, newval64;
+	int mutexrefs;
+	uint32_t * pmtx = NULL;
+
+	/* to provide backwards compat for apps using united condtn vars */
+
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
+		return(EINVAL);
+	if (cond->sig != _PTHREAD_COND_SIG) {
+		LOCK(cond->lock);
+		if (cond->sig != _PTHREAD_COND_SIG) {
+			if  (cond->sig == _PTHREAD_COND_SIG_init) {
+				_new_pthread_cond_init(ocond, NULL, 0);
+			} else   {
+				UNLOCK(cond->lock);
+				return(EINVAL);
+			}
+		}
+		UNLOCK(cond->lock);
+	}
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_START, (uint32_t)cond, 0, 0, 0, 0);
+#endif
+	COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt);
+retry:
+	lgenval = *c_lseqcnt;
+	ugenval = *c_useqcnt;
+	diffgen = lgenval - ugenval;	/* pendig waiters */
+	if (diffgen <= 0) {
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_END, (uint32_t)cond, 0, 0, 0, 0);
+#endif
+		return(0);
+	}
+	
+	mutex = cond->busy;
+
+	if (OSAtomicCompareAndSwap32(ugenval, ugenval+1, (volatile int *)c_useqcnt) != TRUE) 
+		goto retry;
+
+#ifdef COND_MTX_WAITQUEUEMOVE
+	if ((mutex != NULL) && (cond->pshared != PTHREAD_PROCESS_SHARED)) {
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_NONE, (uint32_t)cond, 1, 0, 0, 0);
+#endif
+		(void)__mtx_holdlock(mutex, 1, &flags, &pmtx, &mgen, &ugen);
+		mutexrefs = 1;
+	} else {
+		if (cond->pshared != PTHREAD_PROCESS_SHARED)
+			flags = _PTHREAD_MTX_OPT_NOHOLD;
+		else
+			flags = _PTHREAD_MTX_OPT_NOHOLD | _PTHREAD_MTX_OPT_PSHARED;
+		mgen = ugen = 0;
+		mutexrefs = 0;
+	}
+#else /* COND_MTX_WAITQUEUEMOVE */
+	if (cond->pshared != PTHREAD_PROCESS_SHARED)
+		flags = _PTHREAD_MTX_OPT_NOHOLD;
+	else
+		flags = _PTHREAD_MTX_OPT_NOHOLD | _PTHREAD_MTX_OPT_PSHARED;
+	mgen = ugen = 0;
+	mutexrefs = 0;	
+
+#endif /* COND_MTX_WAITQUEUEMOVE */
+	
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_NONE, (uint32_t)cond, 3, lgenval, ugenval+1, 0);
+#endif
+	retval = __psynch_cvsignal(ocond, lgenval, ugenval+1,(pthread_mutex_t *)mutex, mgen, ugen, pthread_mach_thread_np(thread), flags);
+
+#ifdef COND_MTX_WAITQUEUEMOVE
+	if ((retval != -1) && (retval != 0) && (mutexrefs != 0)) {
+		dropcount = retval;
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_NONE, (uint32_t)cond, 4, dropcount, 0, 0);
+#endif
+		retval = __mtx_droplock(mutex, dropcount, &flags, &pmtx, &mtxgen, &mtxugen, &notify);
+	}
+#endif /* COND_MTX_WAITQUEUEMOVE */
+
+	if (lgenval == ugenval+1){
+		oldval64 = (((uint64_t)(ugenval+1)) << 32);
+		oldval64 |= lgenval;
+		newval64 = 0;
+		OSAtomicCompareAndSwap64(oldval64, newval64, (volatile int64_t *)c_lseqcnt);
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_NONE, (uint32_t)cond, 5, 0, 0, 0);
+#endif
+	}
+			
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_END, (uint32_t)cond, 0, 0, 0, 0);
+#endif
+	return (0);
+}
+
+/*
+ * Signal a condition variable, waking only one thread.
+ */
+int
+_new_pthread_cond_signal(pthread_cond_t *cond)
+{
+	return _new_pthread_cond_signal_thread_np(cond, NULL);
+}
+
+/*
+ * Manage a list of condition variables associated with a mutex
+ */
+
+
+/*
+ * Suspend waiting for a condition variable.
+ * Note: we have to keep a list of condition variables which are using
+ * this same mutex variable so we can detect invalid 'destroy' sequences.
+ * If isconforming < 0, we skip the _pthread_testcancel(), but keep the
+ * remaining conforming behavior..
+ */
+__private_extern__ int       
+__new_pthread_cond_wait(pthread_cond_t *ocond, 
+		   pthread_mutex_t *omutex,
+		   const struct timespec *abstime,
+		   int isRelative,
+		    int isconforming)
+{
+	int retval;
+	npthread_cond_t * cond = (npthread_cond_t *)ocond;
+	npthread_mutex_t * mutex = (npthread_mutex_t * )omutex;
+	mach_timespec_t then = {0,0};
+	struct timespec cthen = {0,0};
+	int sig = cond->sig;
+	int msig = mutex->sig;
+	int firstfit = 0;
+	npthread_mutex_t * pmtx;
+	uint32_t mtxgen, mtxugen, flags, updateval, notify;
+	uint32_t lgenval, ugenval;
+	uint32_t * c_lseqcnt;
+	uint32_t * c_useqcnt;
+	uint32_t * npmtx = NULL;
+
+extern void _pthread_testcancel(pthread_t thread, int isconforming);
+
+	/* to provide backwards compat for apps using united condtn vars */
+	if((sig != _PTHREAD_COND_SIG) && (sig != _PTHREAD_COND_SIG_init))
+		return(EINVAL);
+
+	if (isconforming) {
+		if((msig != _PTHREAD_MUTEX_SIG) && (msig != _PTHREAD_MUTEX_SIG_init))
+			return(EINVAL);
+		if (isconforming > 0)
+			_pthread_testcancel(pthread_self(), 1);
+	}
+	if (cond->sig != _PTHREAD_COND_SIG)
+	{
+		LOCK(cond->lock);
+		if (cond->sig != _PTHREAD_COND_SIG_init)
+		{
+				UNLOCK(cond->lock);
+				return (EINVAL);        /* Not a condition variable */
+		}
+		_new_pthread_cond_init(ocond, NULL, 0);
+		UNLOCK(cond->lock);
+	}
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_START, (uint32_t)cond, 0, 0, (uint32_t)abstime, 0);
+#endif
+	COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt);
+
+	/* send relative time to kernel */
+	if (abstime) {
+		if (isRelative == 0) {
+			struct timespec now;
+			struct timeval tv;
+			gettimeofday(&tv, NULL);
+			TIMEVAL_TO_TIMESPEC(&tv, &now);
+
+			/* Compute relative time to sleep */
+			then.tv_nsec = abstime->tv_nsec - now.tv_nsec;
+			then.tv_sec = abstime->tv_sec - now.tv_sec;
+			if (then.tv_nsec < 0)
+			{
+				then.tv_nsec += NSEC_PER_SEC;
+				then.tv_sec--;
+			}
+			if (((int)then.tv_sec < 0) ||
+				((then.tv_sec == 0) && (then.tv_nsec == 0)))
+			{
+				UNLOCK(cond->lock);
+				return ETIMEDOUT;
+			}
+			if (isconforming != 0) {
+				cthen.tv_sec = abstime->tv_sec;
+            			cthen.tv_nsec = abstime->tv_nsec;
+            			if ((cthen.tv_sec < 0) || (cthen.tv_nsec < 0)) {
+                			UNLOCK(cond->lock);
+                			return EINVAL;
+            			}
+            			if (cthen.tv_nsec >= NSEC_PER_SEC) {
+                			UNLOCK(cond->lock);
+                			return EINVAL;
+            			}
+			}
+		} else {
+			then.tv_sec = abstime->tv_sec;
+			then.tv_nsec = abstime->tv_nsec;
+		}
+		if(isconforming && ((then.tv_sec < 0) || (then.tv_nsec < 0))) {
+			return EINVAL;
+		}
+		if (then.tv_nsec >= NSEC_PER_SEC) {
+			return EINVAL;
+		}
+	}
+
+	cond->busy = mutex;
+	pmtx = mutex; 
+
+	ugenval = *c_useqcnt;
+	lgenval = OSAtomicIncrement32((volatile int32_t *)c_lseqcnt);
+	
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_NONE, (uint32_t)cond, 1, lgenval, ugenval, 0);
+#endif
+	notify = 0;
+	retval = __mtx_droplock(pmtx, 1, &flags, &npmtx, &mtxgen, &mtxugen, &notify);
+	if (retval != 0)
+		return(EINVAL);
+	if ((notify & 1) == 0) {
+		npmtx = NULL;
+	}
+	if ((notify & 0xc0000000) != 0)
+		then.tv_nsec |= (notify & 0xc0000000);
+	
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_NONE, (uint32_t)cond, 3, (uint32_t)mutex, 0, 0);
+#endif
+	
+	if (isconforming) {
+		pthread_cleanup_push(_new_cond_cleanup, (void *)cond);
+		updateval = __psynch_cvwait(ocond, lgenval, ugenval, (pthread_mutex_t *)npmtx, mtxgen, mtxugen, (uint64_t)then.tv_sec, (uint64_t)then.tv_nsec);
+		pthread_cleanup_pop(0);
+	} else {
+		updateval = __psynch_cvwait(ocond, lgenval, ugenval, (pthread_mutex_t *)npmtx, mtxgen, mtxugen, (uint64_t)then.tv_sec, (uint64_t)then.tv_nsec);
+
+	}
+
+	retval = 0;
+
+#ifdef COND_MTX_WAITQUEUEMOVE
+	/* Needs to handle timedout */
+	if (updateval == (uint32_t)-1) {
+		retval = errno;
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_NONE, (uint32_t)cond, 4, retval, 0, 0);
+#endif
+		/* add unlock ref to show one less waiter */
+		_new_cond_dropwait(cond);
+
+		pthread_mutex_lock(omutex);
+
+	} else if ((updateval & PTHRW_MTX_NONE) != 0) {
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_NONE, (uint32_t)cond, 5, updateval, 0, 0);
+#endif
+		pthread_mutex_lock(omutex);
+	} else {
+		/* on successful return mutex held */
+		/* returns 0 on succesful update */
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_NONE, (uint32_t)cond, 6, updateval, 0, 0);
+#endif
+		firstfit = (mutex->mtxopts.options.policy == _PTHREAD_MUTEX_POLICY_FIRSTFIT);
+		if (__mtx_updatebits( mutex, updateval, firstfit, 1) == 1) {
+			/* not expected to  be here */
+			LIBC_ABORT("CONDWAIT mutex acquire mishap");
+		}
+		if (mutex->mtxopts.options.type == PTHREAD_MUTEX_RECURSIVE)
+			mutex->mtxopts.options.lock_count++;
+	}
+#else /* COND_MTX_WAITQUEUEMOVE */
+	if (updateval == (uint32_t)-1) {
+		if (errno == ETIMEDOUT) {
+			retval = ETIMEDOUT;
+		} else if (errno == EINTR) {
+			/*
+			**  EINTR can be treated as a spurious wakeup unless we were canceled.
+			*/
+			retval = 0;
+		} else 
+			retval =  EINVAL;
+
+		/* add unlock ref to show one less waiter */
+		_new_cond_dropwait(cond);
+	} else
+		retval = 0;
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_NONE, (uint32_t)cond, 4, retval, 0, 0);
+#endif
+		pthread_mutex_lock(omutex);
+
+#endif /* COND_MTX_WAITQUEUEMOVE */
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVWAIT | DBG_FUNC_END, (uint32_t)cond, 0, 0, retval, 0);
+#endif
+	return(retval);
+}
+
+static void 
+_new_cond_cleanup(void *arg)
+{
+	npthread_cond_t *cond = (npthread_cond_t *)arg;
+	pthread_mutex_t *mutex;
+
+// 4597450: begin
+	pthread_t thread = pthread_self();
+	int thcanceled = 0;
+
+	LOCK(thread->lock);
+	thcanceled = (thread->detached & _PTHREAD_WASCANCEL);
+	UNLOCK(thread->lock);
+
+	if (thcanceled == 0)
+		return;
+
+// 4597450: end
+    	mutex = cond->busy;
+	
+	/* add unlock ref to show one less waiter */
+	_new_cond_dropwait(cond);
+
+	/*
+	** Can't do anything if this fails -- we're on the way out
+	*/
+	if (mutex != NULL)
+    		(void)pthread_mutex_lock(mutex);
+
+}
+
+void
+_new_cond_dropwait(npthread_cond_t * cond)
+{
+	int sig = cond->sig;
+	int retval;
+	uint32_t lgenval, ugenval, diffgen, mgen, ugen, flags;
+	uint32_t * c_lseqcnt;
+	uint32_t * c_useqcnt;
+	uint64_t oldval64, newval64;
+
+	/* to provide backwards compat for apps using united condtn vars */
+
+	if (sig != _PTHREAD_COND_SIG) 
+		return;
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_START, (uint32_t)cond, 0, 0, 0xee, 0);
+#endif
+	COND_GETSEQ_ADDR(cond, c_lseqcnt, c_useqcnt);
+retry:
+	lgenval = *c_lseqcnt;
+	ugenval = *c_useqcnt;
+	diffgen = lgenval - ugenval;	/* pending waiters */
+
+	if (diffgen <= 0) {
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_END, (uint32_t)cond, 1, 0, 0xee, 0);
+#endif
+		return;
+	}
+	
+	if (OSAtomicCompareAndSwap32(ugenval, ugenval+1, (volatile int *)c_useqcnt) != TRUE) 
+		goto retry;
+
+	if (lgenval == ugenval+1) {
+		/* last one */
+		/* send last drop  notify to erase pre post */
+		flags =  _PTHREAD_MTX_OPT_LASTDROP;
+
+		if (cond->pshared == PTHREAD_PROCESS_SHARED)
+			flags |= _PTHREAD_MTX_OPT_PSHARED;
+		mgen = ugen = 0;
+
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_NONE, (uint32_t)cond, 1, 0, 0xee, 0);
+#endif
+		retval = __psynch_cvsignal((pthread_cond_t *)cond, lgenval, ugenval+1,(pthread_mutex_t *)NULL, mgen, ugen, MACH_PORT_NULL, flags);
+
+		oldval64 = (((uint64_t)(ugenval+1)) << 32);
+		oldval64 |= lgenval;
+		newval64 = 0;
+		OSAtomicCompareAndSwap64(oldval64, newval64, (volatile int64_t *)c_lseqcnt);
+	}
+			
+#if _KSYN_TRACE_
+	(void)__kdebug_trace(_KSYN_TRACE_UM_CVSIG | DBG_FUNC_END, (uint32_t)cond, 2, 0, 0xee, 0);
+#endif
+	return;
+}
+
+
+int       
+_new_pthread_cond_timedwait_relative_np(pthread_cond_t *cond, 
+		       pthread_mutex_t *mutex,
+		       const struct timespec *abstime)
+{
+	return (__new_pthread_cond_wait(cond, mutex, abstime, 1, 0));
+}
+
+
+int       
+_new_pthread_cond_wait(pthread_cond_t *cond, 
+		  pthread_mutex_t *mutex)
+{
+	return(__new_pthread_cond_wait(cond, mutex, 0, 0, 1));
+}
+
+int       
+_new_pthread_cond_timedwait(pthread_cond_t *cond, 
+		       pthread_mutex_t *mutex,
+		       const struct timespec *abstime)
+{
+	return(__new_pthread_cond_wait(cond, mutex, abstime, 0, 1));
+}
+
+#endif /* __i386__ || __x86_64__ */
+
 #else /* !BUILDING_VARIANT */
+
 extern int _pthread_cond_wait(pthread_cond_t *cond, 
 			pthread_mutex_t *mutex,
 			const struct timespec *abstime,
@@ -539,39 +1335,45 @@
 			int isconforming);
 
 #endif /* !BUILDING_VARIANT ] */
-
+/*
+ * Initialize a condition variable.  Note: 'attr' is ignored.
+ */
+
+/*
+ * Initialize a condition variable.  This is the public interface.
+ * We can't trust the lock, so initialize it first before taking
+ * it.
+ */
+int       
+pthread_cond_init(pthread_cond_t *cond,
+		  const pthread_condattr_t *attr)
+{
+	int conforming;
+
+#if __DARWIN_UNIX03
+        conforming = 1;
+#else /* __DARWIN_UNIX03 */
+        conforming = 0;
+#endif /* __DARWIN_UNIX03 */
+
+	LOCK_INIT(cond->lock);
+#if  defined(__i386__) || defined(__x86_64__)
+	if ((attr != NULL) && (attr->pshared == PTHREAD_PROCESS_SHARED)) {
+		return(_new_pthread_cond_init(cond, attr, conforming));
+	}
+#endif /* __i386__ || __x86_64__ */
+	
+	return (_pthread_cond_init(cond, attr, conforming));
+}
+
+/*
 int       
 pthread_cond_wait(pthread_cond_t *cond, 
 		  pthread_mutex_t *mutex)
-{
-	int conforming;
-#if __DARWIN_UNIX03
-
-	if (__unix_conforming == 0)
-		__unix_conforming = 1;
-
-	conforming = 1;
-#else /* __DARWIN_UNIX03 */
-	conforming = 0;
-#endif /* __DARWIN_UNIX03 */
-	return (_pthread_cond_wait(cond, mutex, (struct timespec *)NULL, 0, conforming));
-}
 
 int       
 pthread_cond_timedwait(pthread_cond_t *cond, 
 		       pthread_mutex_t *mutex,
 		       const struct timespec *abstime)
-{
-	int conforming;
-#if __DARWIN_UNIX03
-	if (__unix_conforming == 0)
-		__unix_conforming = 1;
-
-        conforming = 1;
-#else /* __DARWIN_UNIX03 */
-        conforming = 0;
-#endif /* __DARWIN_UNIX03 */
-
-	return (_pthread_cond_wait(cond, mutex, abstime, 0, conforming));
-}
-
+
+moved to pthread_cancelable.c */