Changeset e71a61d in mainline for kernel/generic/include/synch/futex.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/futex.h

    r726e1043 re71a61d  
    4343
    4444/** Kernel-side futex structure. */
    45 struct futex {
     45typedef struct {
    4646        uintptr_t paddr;        /**< Physical address of the status variable. */
    4747        waitq_t wq;             /**< Wait queue for threads waiting for futex availability. */
    4848        link_t ht_link;         /**< Futex hash table link. */
    4949        count_t refcount;       /**< Number of tasks that reference this futex. */
    50 };
     50} futex_t;
    5151
    5252extern void futex_init(void);
Note: See TracChangeset for help on using the changeset viewer.