Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2800 → Rev 2801

/branches/tracing/kernel/generic/include/proc/task.h
93,6 → 93,12
* certain extent.
*/
atomic_t active_calls;
 
/** Debugging stuff */
bool being_debugged;
bool stop_request;
call_t *debug_begin_call;
call_t *debug_go_call;
/** Architecture specific task data. */
task_arch_t arch;
/branches/tracing/kernel/generic/include/proc/thread.h
203,6 → 203,9
 
/** Thread's kernel stack. */
uint8_t *kstack;
 
/** Debugging stuff */
waitq_t go_wq;
} thread_t;
 
/** Thread list lock.