Rev 2083 | Rev 2089 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2083 | Rev 2085 | ||
|---|---|---|---|
| Line 48... | Line 48... | ||
| 48 | typedef unsigned long context_id_t; |
48 | typedef unsigned long context_id_t; |
| 49 | 49 | ||
| 50 | typedef struct task task_t; |
50 | typedef struct task task_t; |
| 51 | typedef struct thread thread_t; |
51 | typedef struct thread thread_t; |
| 52 | 52 | ||
| 53 | typedef struct spinlock spinlock_t; |
- | |
| 54 | typedef struct mutex mutex_t; |
- | |
| 55 | typedef struct semaphore semaphore_t; |
- | |
| 56 | typedef struct rwlock rwlock_t; |
- | |
| 57 | typedef enum rwlock_type rwlock_type_t; |
- | |
| 58 | typedef struct condvar condvar_t; |
- | |
| 59 | typedef struct waitq waitq_t; |
- | |
| 60 | typedef struct futex futex_t; |
- | |
| 61 | - | ||
| 62 | typedef struct as_area as_area_t; |
53 | typedef struct as_area as_area_t; |
| 63 | typedef struct as as_t; |
54 | typedef struct as as_t; |
| 64 | 55 | ||
| 65 | typedef struct link link_t; |
56 | typedef struct link link_t; |
| 66 | 57 | ||