Subversion Repositories HelenOS

Rev

Rev 3665 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3665 Rev 3742
Line 175... Line 175...
175
    unative_t syscall_args[6];
175
    unative_t syscall_args[6];
176
    istate_t *uspace_state;
176
    istate_t *uspace_state;
177
 
177
 
178
    /** What type of event are we stopped in or 0 if none. */
178
    /** What type of event are we stopped in or 0 if none. */
179
    udebug_event_t cur_event;
179
    udebug_event_t cur_event;
180
    bool go;       /**< thread is GO */
180
    bool go;        /**< thread is GO */
181
    bool stoppable;    /**< thread is stoppable */
181
    bool stoppable;     /**< thread is stoppable */
182
    bool debug_active; /**< thread is in a debugging session */
182
    bool active;        /**< thread is in a debugging session */
183
} udebug_thread_t;
183
} udebug_thread_t;
184
 
184
 
185
struct task;
185
struct task;
186
struct thread;
186
struct thread;
187
 
187