* Merged with ea434f5851f4.
authorChristian Thalinger <twisti@complang.tuwien.ac.at>
Sun, 27 Apr 2008 21:38:18 +0000 (23:38 +0200)
committerChristian Thalinger <twisti@complang.tuwien.ac.at>
Sun, 27 Apr 2008 21:38:18 +0000 (23:38 +0200)
src/threads/posix/lock.c

index f237127a919b7547eaca5097b99be3c62df87669..07a5362cfe4a6d93782330ee4aa05072f07ac396 100644 (file)
@@ -1408,10 +1408,10 @@ static void lock_record_notify(threadobject *t, lock_record_t *lr, bool one)
 
                waitingthread = w->thread;
 
-               /* We must skip threads which have already been notified or
-                  interrupted. They will remove themselves from the list. */
+               /* We must skip threads which have already been notified. They will
+                  remove themselves from the list. */
 
-               if (waitingthread->signaled || waitingthread->interrupted)
+               if (waitingthread->signaled)
                        continue;
 
                /* Enter the wait-mutex. */