Changes in kernel/generic/include/proc/thread.h [aab5e46:deacd722] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
raab5e46 rdeacd722 41 41 #include <cpu.h> 42 42 #include <synch/spinlock.h> 43 #include <synch/rcu_types.h>44 43 #include <adt/odict.h> 45 44 #include <mm/slab.h> … … 194 193 thread_id_t tid; 195 194 196 /** Work queue this thread belongs to or NULL. Immutable. */197 struct work_queue *workq;198 /** Links work queue threads. Protected by workq->lock. */199 link_t workq_link;200 /** True if the worker was blocked and is not running. Use thread->lock. */201 bool workq_blocked;202 /** True if the worker will block in order to become idle. Use workq->lock. */203 bool workq_idling;204 205 /** RCU thread related data. Protected by its own locks. */206 rcu_thread_data_t rcu;207 208 195 /** Architecture-specific data. */ 209 196 thread_arch_t arch; … … 238 225 239 226 #ifndef thread_create_arch 240 extern void thread_create_arch(thread_t *);227 extern errno_t thread_create_arch(thread_t *, thread_flags_t); 241 228 #endif 242 229
Note:
See TracChangeset
for help on using the changeset viewer.