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


Ignore:
Timestamp:
2007-02-03T13:22:24Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f619ec11
Parents:
fa8e7d2
Message:

Merge as_t structure into one and leave the differring parts in as_genarch_t.

Indentation and formatting changes in header files.

File:
1 edited

Legend:

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

    rfa8e7d2 r80bcaed  
    5353        SPINLOCK_DECLARE(lock);
    5454
    55         int missed_wakeups;     /**< Number of waitq_wakeup() calls that didn't find a thread to wake up. */
    56         link_t head;            /**< List of sleeping threads for wich there was no missed_wakeup. */
     55        /**
     56         * Number of waitq_wakeup() calls that didn't find a thread to wake up.
     57         */
     58        int missed_wakeups;
     59        /** List of sleeping threads for wich there was no missed_wakeup. */
     60        link_t head;
    5761} waitq_t;
    5862
Note: See TracChangeset for help on using the changeset viewer.