Changes in kernel/generic/include/proc/thread.h [ee42e43:48dcc69] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
ree42e43 r48dcc69 40 40 #include <time/timeout.h> 41 41 #include <cpu.h> 42 #include <synch/rwlock.h> 42 43 #include <synch/spinlock.h> 43 44 #include <adt/avl.h> … … 154 155 int fpu_context_engaged; 155 156 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 156 164 /** Thread's state. */ 157 165 state_t state; … … 231 239 extern void thread_detach(thread_t *); 232 240 241 extern void thread_register_call_me(void (*)(void *), void *); 233 242 extern void thread_print_list(bool); 234 243 extern void thread_destroy(thread_t *, bool);
Note:
See TracChangeset
for help on using the changeset viewer.