Changeset 016acbe in mainline for generic/src/synch/waitq.c
- Timestamp:
- 2006-04-09T14:58:42Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f6e755
- Parents:
- 203f4c3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/synch/waitq.c
r203f4c3 r016acbe 74 74 75 75 spinlock_lock(&threads_lock); 76 if (! list_member(&t->threads_link, &threads_head))76 if (!thread_exists(t)) 77 77 goto out; 78 78 … … 118 118 ipl = interrupts_disable(); 119 119 spinlock_lock(&threads_lock); 120 if (! list_member(&t->threads_link, &threads_head))120 if (!thread_exists(t)) 121 121 goto out; 122 122
Note:
See TracChangeset
for help on using the changeset viewer.