Changes in kernel/generic/include/proc/thread.h [df58e44:7e7b791] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
rdf58e44 r7e7b791 140 140 bool interrupted; 141 141 142 /**143 * If true, the scheduler will print a stack trace144 * to the kernel console upon scheduling this thread.145 */146 bool btrace;147 148 142 /** If true, thread_join_timeout() cannot be used on this thread. */ 149 143 bool detached; … … 196 190 197 191 #ifdef CONFIG_UDEBUG 192 /** 193 * If true, the scheduler will print a stack trace 194 * to the kernel console upon scheduling this thread. 195 */ 196 bool btrace; 197 198 198 /** Debugging stuff */ 199 199 udebug_thread_t udebug; … … 245 245 extern void thread_update_accounting(bool); 246 246 extern bool thread_exists(thread_t *); 247 248 #ifdef CONFIG_UDEBUG 247 249 extern void thread_stack_trace(thread_id_t); 250 #endif 248 251 249 252 /** Fpu context slab cache. */ … … 256 259 extern sysarg_t sys_thread_get_id(thread_id_t *); 257 260 extern sysarg_t sys_thread_usleep(uint32_t); 261 extern sysarg_t sys_thread_udelay(uint32_t); 258 262 259 263 #endif
Note:
See TracChangeset
for help on using the changeset viewer.