Changes in kernel/generic/include/proc/thread.h [7e7b791:df58e44] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
r7e7b791 rdf58e44 140 140 bool interrupted; 141 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 142 148 /** If true, thread_join_timeout() cannot be used on this thread. */ 143 149 bool detached; … … 190 196 191 197 #ifdef CONFIG_UDEBUG 192 /**193 * If true, the scheduler will print a stack trace194 * 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_UDEBUG249 247 extern void thread_stack_trace(thread_id_t); 250 #endif251 248 252 249 /** Fpu context slab cache. */ … … 259 256 extern sysarg_t sys_thread_get_id(thread_id_t *); 260 257 extern sysarg_t sys_thread_usleep(uint32_t); 261 extern sysarg_t sys_thread_udelay(uint32_t);262 258 263 259 #endif
Note:
See TracChangeset
for help on using the changeset viewer.