Changes in kernel/generic/include/proc/thread.h [df58e44:26aafe8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
rdf58e44 r26aafe8 49 49 #include <sysinfo/abi.h> 50 50 51 #define THREAD_STACK_SIZE STACK_SIZE52 51 #define THREAD_NAME_BUFLEN 20 53 52 … … 140 139 bool interrupted; 141 140 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 141 /** If true, thread_join_timeout() cannot be used on this thread. */ 149 142 bool detached; … … 196 189 197 190 #ifdef CONFIG_UDEBUG 191 /** 192 * If true, the scheduler will print a stack trace 193 * to the kernel console upon scheduling this thread. 194 */ 195 bool btrace; 196 198 197 /** Debugging stuff */ 199 198 udebug_thread_t udebug; … … 245 244 extern void thread_update_accounting(bool); 246 245 extern bool thread_exists(thread_t *); 246 247 #ifdef CONFIG_UDEBUG 247 248 extern void thread_stack_trace(thread_id_t); 249 #endif 248 250 249 251 /** Fpu context slab cache. */
Note:
See TracChangeset
for help on using the changeset viewer.