Changes in kernel/generic/include/proc/thread.h [df58e44:43ac0cc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/proc/thread.h
rdf58e44 r43ac0cc 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; … … 162 155 */ 163 156 int fpu_context_engaged; 157 158 /* The thread will not be migrated if nomigrate is non-zero. */ 159 int nomigrate; 164 160 165 161 /** Thread's state. */ … … 196 192 197 193 #ifdef CONFIG_UDEBUG 194 /** 195 * If true, the scheduler will print a stack trace 196 * to the kernel console upon scheduling this thread. 197 */ 198 bool btrace; 199 198 200 /** Debugging stuff */ 199 201 udebug_thread_t udebug; … … 245 247 extern void thread_update_accounting(bool); 246 248 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_UDEBUG 247 254 extern void thread_stack_trace(thread_id_t); 255 #endif 248 256 249 257 /** Fpu context slab cache. */ … … 256 264 extern sysarg_t sys_thread_get_id(thread_id_t *); 257 265 extern sysarg_t sys_thread_usleep(uint32_t); 266 extern sysarg_t sys_thread_udelay(uint32_t); 258 267 259 268 #endif
Note:
See TracChangeset
for help on using the changeset viewer.