Changeset e71a61d in mainline for kernel/generic/include/synch/waitq.h


Ignore:
Timestamp:
2007-01-22T14:45:07Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
51baa8a
Parents:
726e1043
Message:

typedef elimination

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/synch/waitq.h

    r726e1043 re71a61d  
    4646
    4747/** Wait queue structure. */
    48 struct waitq {
     48typedef struct {
    4949
    5050        /** Lock protecting wait queue structure.
     
    5656        int missed_wakeups;     /**< Number of waitq_wakeup() calls that didn't find a thread to wake up. */
    5757        link_t head;            /**< List of sleeping threads for wich there was no missed_wakeup. */
    58 };
     58} waitq_t;
    5959
    6060#define waitq_sleep(wq) \
Note: See TracChangeset for help on using the changeset viewer.