Subversion Repositories HelenOS

Rev

Rev 2081 | Rev 2085 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2081 Rev 2083
Line 47... Line 47...
47
typedef unsigned long long task_id_t;
47
typedef unsigned long long task_id_t;
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
typedef struct context context_t;
-
 
53
typedef struct fpu_context fpu_context_t;
-
 
54
 
52
 
55
typedef struct spinlock spinlock_t;
53
typedef struct spinlock spinlock_t;
56
typedef struct mutex mutex_t;
54
typedef struct mutex mutex_t;
57
typedef struct semaphore semaphore_t;
55
typedef struct semaphore semaphore_t;
58
typedef struct rwlock rwlock_t;
56
typedef struct rwlock rwlock_t;
59
typedef enum rwlock_type rwlock_type_t;
57
typedef enum rwlock_type rwlock_type_t;
60
typedef struct condvar condvar_t;
58
typedef struct condvar condvar_t;
61
typedef struct waitq waitq_t;
59
typedef struct waitq waitq_t;
62
typedef struct futex futex_t;
60
typedef struct futex futex_t;
63
 
61
 
64
typedef struct buddy_system buddy_system_t;
-
 
65
typedef struct buddy_system_operations buddy_system_operations_t;
-
 
66
 
-
 
67
typedef struct as_area as_area_t;
62
typedef struct as_area as_area_t;
68
typedef struct as as_t;
63
typedef struct as as_t;
69
 
64
 
70
typedef struct link link_t;
65
typedef struct link link_t;
71
 
66