Changes in kernel/generic/include/proc/thread.h [deacd722:aab5e46] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
rdeacd722 raab5e46 41 41 #include <cpu.h> 42 42 #include <synch/spinlock.h> 43 #include <synch/rcu_types.h> 43 44 #include <adt/odict.h> 44 45 #include <mm/slab.h> … … 193 194 thread_id_t tid; 194 195 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 195 208 /** Architecture-specific data. */ 196 209 thread_arch_t arch; … … 225 238 226 239 #ifndef thread_create_arch 227 extern errno_t thread_create_arch(thread_t *, thread_flags_t);240 extern void thread_create_arch(thread_t *); 228 241 #endif 229 242
Note:
See TracChangeset
for help on using the changeset viewer.