Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2901 → Rev 2902

/branches/tracing/kernel/generic/include/proc/task.h
106,8 → 106,12
answerbox_t kernel_box;
/** Thread used to service kernel answerbox */
struct thread *kb_thread;
/** True if kb_thread != NULL or is being prepared */
bool kb_thread_at_hand;
/** Kbox thread creation vs. begin of cleanup mutual exclusion */
SPINLOCK_DECLARE(kb_cleanup_lock);
/** True if cleanup of kbox has already started */
bool kb_finished;
/** Used for waiting on kbox thread shutdown */
waitq_t kb_thread_shutdown_wq;
/** Architecture specific task data. */
task_arch_t arch;