Changeset 9cefba4 in mainline for include/synch/waitq.h


Ignore:
Timestamp:
2005-10-16T19:18:19Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ba1b2194
Parents:
0bed5d0
Message:

Doxygen-style comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/synch/waitq.h

    r0bed5d0 r9cefba4  
    4141struct waitq {
    4242        spinlock_t lock;
    43         int missed_wakeups;
    44         link_t head;
     43        int missed_wakeups;     /**< Number of waitq_wakeup() calls that didn't find a thread to wake up. */
     44        link_t head;            /**< List of sleeping threads for wich there was no missed_wakeup. */
    4545};
    4646
Note: See TracChangeset for help on using the changeset viewer.