X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/b0d623f7f2ae71ed96e60569f61f9a9a27016e80..bb59bff194111743b33cc36712410b5656329d3c:/bsd/kern/kern_synch.c

diff --git a/bsd/kern/kern_synch.c b/bsd/kern/kern_synch.c
index 68a45824e..b1c4eda1c 100644
--- a/bsd/kern/kern_synch.c
+++ b/bsd/kern/kern_synch.c
@@ -53,12 +53,11 @@
 
 #include <kern/task.h>
 #include <mach/time_value.h>
-#include <kern/lock.h>
+#include <kern/locks.h>
 
 #include <sys/systm.h>			/* for unix_syscall_return() */
 #include <libkern/OSAtomic.h>
 
-extern boolean_t thread_should_abort(thread_t);	/* XXX */
 extern void compute_averunnable(void *);	/* XXX */
 
 
@@ -162,7 +161,7 @@ _sleep(
 	struct proc *p;
 	thread_t self = current_thread();
 	struct uthread * ut;
-	int sig, catch = pri & PCATCH;
+	int sig, catch;
 	int dropmutex  = pri & PDROP;
 	int spinmutex  = pri & PSPIN;
 	int wait_result;
@@ -175,26 +174,39 @@ _sleep(
 	/* It can still block in proc_exit() after the teardown. */
 	if (p->p_stats != NULL)
 		OSIncrementAtomicLong(&p->p_stats->p_ru.ru_nvcsw);
+	
+	if (pri & PCATCH)
+		catch = THREAD_ABORTSAFE;
+	else
+		catch = THREAD_UNINT;
 
 	/* set wait message & channel */
 	ut->uu_wchan = chan;
 	ut->uu_wmesg = wmsg ? wmsg : "unknown";
 
 	if (mtx != NULL && chan != NULL && (thread_continue_t)continuation == THREAD_CONTINUE_NULL) {
+		int	flags;
+
+		if (dropmutex)
+			flags = LCK_SLEEP_UNLOCK;
+		else
+			flags = LCK_SLEEP_DEFAULT;
+
+		if (spinmutex)
+			flags |= LCK_SLEEP_SPIN;
 
 		if (abstime)
-			wait_result = lck_mtx_sleep_deadline(mtx, (dropmutex) ? LCK_SLEEP_UNLOCK : 0,
-							     chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT, abstime);
+			wait_result = lck_mtx_sleep_deadline(mtx, flags, chan, catch, abstime);
 		else
-			wait_result = lck_mtx_sleep(mtx, (dropmutex) ? LCK_SLEEP_UNLOCK : 0,
-							     chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT);
+			wait_result = lck_mtx_sleep(mtx, flags, chan, catch);
 	}
 	else {
 		if (chan != NULL)
-			assert_wait_deadline(chan, (catch) ? THREAD_ABORTSAFE : THREAD_UNINT, abstime);
+			assert_wait_deadline(chan, catch, abstime);
 		if (mtx)
 			lck_mtx_unlock(mtx);
-		if (catch) {
+
+		if (catch == THREAD_ABORTSAFE) {
 			if (SHOULDissignal(p,ut)) {
 				if ((sig = CURSIG(p)) != 0) {
 					if (clear_wait(self, THREAD_INTERRUPTED) == KERN_FAILURE)
@@ -258,11 +270,11 @@ block:
 			 * first, regardless of whether awakened due
 			 * to receiving event.
 			 */
-			if (!catch)
+			if (catch != THREAD_ABORTSAFE)
 				break;
 			/* else fall through */
 		case THREAD_INTERRUPTED:
-			if (catch) {
+			if (catch == THREAD_ABORTSAFE) {
 				if (thread_should_abort(self)) {
 					error = EINTR;
 				} else if (SHOULDissignal(p, ut)) {
@@ -392,7 +404,7 @@ tsleep1(
 void
 wakeup(void *chan)
 {
-	thread_wakeup_prim((caddr_t)chan, FALSE, THREAD_AWAKENED);
+	thread_wakeup((caddr_t)chan);
 }
 
 /*
@@ -404,7 +416,7 @@ wakeup(void *chan)
 void
 wakeup_one(caddr_t chan)
 {
-	thread_wakeup_prim((caddr_t)chan, TRUE, THREAD_AWAKENED);
+	thread_wakeup_one((caddr_t)chan);
 }
 
 /*