Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3599 → Rev 3600

/trunk/kernel/generic/include/udebug/udebug.h
176,7 → 176,7
*/
atomic_t int_lock;
 
/** Synchronize debug ops on this thread / access to this structure */
/** Synchronize debug ops on this thread / access to this structure. */
mutex_t lock;
 
waitq_t go_wq;
183,11 → 183,11
call_t *go_call;
unative_t syscall_args[6];
 
/** What type of event are we stopped in or 0 if none */
/** What type of event are we stopped in or 0 if none. */
udebug_event_t cur_event;
bool stop;
bool stoppable;
bool debug_active; /**< In a debugging session */
bool debug_active; /**< in a debugging session */
} udebug_thread_t;
 
struct task;