Changes in kernel/generic/include/proc/thread.h [48dcc69:ee42e43] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
r48dcc69 ree42e43 40 40 #include <time/timeout.h> 41 41 #include <cpu.h> 42 #include <synch/rwlock.h>43 42 #include <synch/spinlock.h> 44 43 #include <adt/avl.h> … … 155 154 int fpu_context_engaged; 156 155 157 rwlock_type_t rwlock_holder_type;158 159 /** Callback fired in scheduler before the thread is put asleep. */160 void (* call_me)(void *);161 /** Argument passed to call_me(). */162 void *call_me_with;163 164 156 /** Thread's state. */ 165 157 state_t state; … … 239 231 extern void thread_detach(thread_t *); 240 232 241 extern void thread_register_call_me(void (*)(void *), void *);242 233 extern void thread_print_list(bool); 243 234 extern void thread_destroy(thread_t *, bool);
Note:
See TracChangeset
for help on using the changeset viewer.