From 36860e64dbe0a6d294ec3b1430e7926ea0ed2fd5 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 3 Nov 2006 18:55:00 +0000 Subject: remove duplicated/unused ASSERT code --- libpthread/linuxthreads.old/queue.h | 1 - 1 file changed, 1 deletion(-) (limited to 'libpthread/linuxthreads.old/queue.h') diff --git a/libpthread/linuxthreads.old/queue.h b/libpthread/linuxthreads.old/queue.h index 28bd75531..c7f8471b9 100644 --- a/libpthread/linuxthreads.old/queue.h +++ b/libpthread/linuxthreads.old/queue.h @@ -21,7 +21,6 @@ static inline void enqueue(pthread_descr * q, pthread_descr th) { int prio = th->p_priority; - ASSERT(th->p_nextwaiting == NULL); for (; *q != NULL; q = &((*q)->p_nextwaiting)) { if (prio > (*q)->p_priority) { th->p_nextwaiting = *q; -- cgit v1.2.3