Changeset 2d93f1f9 in mainline for generic/src/synch/waitq.c


Ignore:
Timestamp:
2005-12-06T21:58:18Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a80d406
Parents:
36e7b6c3
Message:

Named spinlocks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/synch/waitq.c

    r36e7b6c3 r2d93f1f9  
    4747void waitq_initialize(waitq_t *wq)
    4848{
    49         spinlock_initialize(&wq->lock);
     49        spinlock_initialize(&wq->lock, "waitq_lock");
    5050        list_initialize(&wq->head);
    5151        wq->missed_wakeups = 0;
Note: See TracChangeset for help on using the changeset viewer.