Rev 1104 | Rev 1380 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1104 | Rev 1107 | ||
---|---|---|---|
Line 59... | Line 59... | ||
59 | typedef struct semaphore semaphore_t; |
59 | typedef struct semaphore semaphore_t; |
60 | typedef struct rwlock rwlock_t; |
60 | typedef struct rwlock rwlock_t; |
61 | typedef enum rwlock_type rwlock_type_t; |
61 | typedef enum rwlock_type rwlock_type_t; |
62 | typedef struct condvar condvar_t; |
62 | typedef struct condvar condvar_t; |
63 | typedef struct waitq waitq_t; |
63 | typedef struct waitq waitq_t; |
- | 64 | typedef struct futex futex_t; |
|
64 | 65 | ||
65 | typedef struct chunk chunk_t; |
66 | typedef struct chunk chunk_t; |
66 | 67 | ||
67 | typedef struct buddy_system buddy_system_t; |
68 | typedef struct buddy_system buddy_system_t; |
68 | typedef struct buddy_system_operations buddy_system_operations_t; |
69 | typedef struct buddy_system_operations buddy_system_operations_t; |
Line 90... | Line 91... | ||
90 | typedef struct hash_table_operations hash_table_operations_t; |
91 | typedef struct hash_table_operations hash_table_operations_t; |
91 | 92 | ||
92 | typedef struct btree_node btree_node_t; |
93 | typedef struct btree_node btree_node_t; |
93 | typedef struct btree btree_t; |
94 | typedef struct btree btree_t; |
94 | 95 | ||
95 | typedef struct atomic atomic_t; |
- | |
96 | - | ||
97 | #endif |
96 | #endif |