Changes in kernel/generic/include/proc/thread.h [26aafe8:df58e44] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
r26aafe8 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; … … 189 196 190 197 #ifdef CONFIG_UDEBUG 191 /**192 * If true, the scheduler will print a stack trace193 * to the kernel console upon scheduling this thread.194 */195 bool btrace;196 197 198 /** Debugging stuff */ 198 199 udebug_thread_t udebug; … … 244 245 extern void thread_update_accounting(bool); 245 246 extern bool thread_exists(thread_t *); 246 247 #ifdef CONFIG_UDEBUG248 247 extern void thread_stack_trace(thread_id_t); 249 #endif250 248 251 249 /** Fpu context slab cache. */
Note:
See TracChangeset
for help on using the changeset viewer.