Changes in kernel/generic/include/proc/thread.h [43ac0cc:df58e44] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
r43ac0cc rdf58e44 49 49 #include <sysinfo/abi.h> 50 50 51 #define THREAD_STACK_SIZE STACK_SIZE 51 52 #define THREAD_NAME_BUFLEN 20 52 53 … … 139 140 bool interrupted; 140 141 142 /** 143 * If true, the scheduler will print a stack trace 144 * to the kernel console upon scheduling this thread. 145 */ 146 bool btrace; 147 141 148 /** If true, thread_join_timeout() cannot be used on this thread. */ 142 149 bool detached; … … 155 162 */ 156 163 int fpu_context_engaged; 157 158 /* The thread will not be migrated if nomigrate is non-zero. */159 int nomigrate;160 164 161 165 /** Thread's state. */ … … 192 196 193 197 #ifdef CONFIG_UDEBUG 194 /**195 * If true, the scheduler will print a stack trace196 * to the kernel console upon scheduling this thread.197 */198 bool btrace;199 200 198 /** Debugging stuff */ 201 199 udebug_thread_t udebug; … … 247 245 extern void thread_update_accounting(bool); 248 246 extern bool thread_exists(thread_t *); 249 250 extern void thread_migration_disable(void);251 extern void thread_migration_enable(void);252 253 #ifdef CONFIG_UDEBUG254 247 extern void thread_stack_trace(thread_id_t); 255 #endif256 248 257 249 /** Fpu context slab cache. */ … … 264 256 extern sysarg_t sys_thread_get_id(thread_id_t *); 265 257 extern sysarg_t sys_thread_usleep(uint32_t); 266 extern sysarg_t sys_thread_udelay(uint32_t);267 258 268 259 #endif
Note:
See TracChangeset
for help on using the changeset viewer.