Subversion Repositories HelenOS

Rev

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

Rev 3623 Rev 3684
Line 213... Line 213...
213
    unative_t syscall_args[6];
213
    unative_t syscall_args[6];
214
    istate_t *uspace_state;
214
    istate_t *uspace_state;
215
 
215
 
216
    /** What type of event are we stopped in or 0 if none. */
216
    /** What type of event are we stopped in or 0 if none. */
217
    udebug_event_t cur_event;
217
    udebug_event_t cur_event;
218
    bool go;       /**< thread is GO */
218
    bool go;        /**< thread is GO */
219
    bool stoppable;    /**< thread is stoppable */
219
    bool stoppable;     /**< thread is stoppable */
220
    bool debug_active; /**< thread is in a debugging session */
220
    bool active;        /**< thread is in a debugging session */
221
} udebug_thread_t;
221
} udebug_thread_t;
222
 
222
 
223
struct task;
223
struct task;
224
struct thread;
224
struct thread;
225
 
225