Subversion Repositories HelenOS-historic

Rev

Rev 1184 | Rev 1502 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1184 Rev 1288
Line 89... Line 89...
89
 
89
 
90
    waitq_t *sleep_queue;           /**< Wait queue in which this thread sleeps. */
90
    waitq_t *sleep_queue;           /**< Wait queue in which this thread sleeps. */
91
    timeout_t sleep_timeout;        /**< Timeout used for timeoutable sleeping.  */
91
    timeout_t sleep_timeout;        /**< Timeout used for timeoutable sleeping.  */
92
    volatile int timeout_pending;       /**< Flag signalling sleep timeout in progress. */
92
    volatile int timeout_pending;       /**< Flag signalling sleep timeout in progress. */
93
 
93
 
-
 
94
    /** True if this thread is executing copy_from_uspace(). False otherwise. */
-
 
95
    bool in_copy_from_uspace;
-
 
96
    /** True if this thread is executing copy_to_uspace(). False otherwise. */
-
 
97
    bool in_copy_to_uspace;
-
 
98
 
-
 
99
 
94
    fpu_context_t *saved_fpu_context;
100
    fpu_context_t *saved_fpu_context;
95
    int fpu_context_exists;
101
    int fpu_context_exists;
96
 
102
 
97
    /*
103
    /*
98
     * Defined only if thread doesn't run.
104
     * Defined only if thread doesn't run.