Changeset bd08239 in mainline for kernel/generic/src/synch/waitq.c
- Timestamp:
- 2011-06-18T15:35:25Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 44e2c1a
- Parents:
- 313775b (diff), adfdbd5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/synch/waitq.c
r313775b rbd08239 69 69 { 70 70 irq_spinlock_initialize(&wq->lock, "wq.lock"); 71 list_initialize(&wq-> head);71 list_initialize(&wq->sleepers); 72 72 wq->missed_wakeups = 0; 73 73 } … … 196 196 irq_spinlock_lock(&wq->lock, true); 197 197 198 if (!list_empty(&wq->head)) { 199 thread_t *thread = list_get_instance(wq->head.next, thread_t, wq_link); 198 if (!list_empty(&wq->sleepers)) { 199 thread_t *thread = list_get_instance(list_first(&wq->sleepers), 200 thread_t, wq_link); 200 201 201 202 irq_spinlock_lock(&thread->lock, false); … … 407 408 } 408 409 409 list_append(&THREAD->wq_link, &wq-> head);410 list_append(&THREAD->wq_link, &wq->sleepers); 410 411 411 412 /* … … 464 465 465 466 loop: 466 if (list_empty(&wq-> head)) {467 if (list_empty(&wq->sleepers)) { 467 468 wq->missed_wakeups++; 468 469 if ((count) && (mode == WAKEUP_ALL)) … … 473 474 474 475 count++; 475 thread_t *thread = list_get_instance(wq->head.next, thread_t, wq_link); 476 thread_t *thread = list_get_instance(list_first(&wq->sleepers), 477 thread_t, wq_link); 476 478 477 479 /*
Note:
See TracChangeset
for help on using the changeset viewer.