Subversion Repositories HelenOS

Rev

Rev 1787 | Rev 1839 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1820
Line 144... Line 144...
144
 
144
 
145
    uint64_t ticks;             /**< Ticks before preemption. */
145
    uint64_t ticks;             /**< Ticks before preemption. */
146
 
146
 
147
    int priority;               /**< Thread's priority. Implemented as index to CPU->rq */
147
    int priority;               /**< Thread's priority. Implemented as index to CPU->rq */
148
    uint32_t tid;               /**< Thread ID. */
148
    uint32_t tid;               /**< Thread ID. */
-
 
149
    context_id_t context;       /**< Thread security context */
149
   
150
   
150
    thread_arch_t arch;         /**< Architecture-specific data. */
151
    thread_arch_t arch;         /**< Architecture-specific data. */
151
 
152
 
152
    uint8_t *kstack;                /**< Thread's kernel stack. */
153
    uint8_t *kstack;                /**< Thread's kernel stack. */
153
};
154
};
Line 192... Line 193...
192
 
193
 
193
#endif
194
#endif
194
 
195
 
195
 /** @}
196
/** @}
196
 */
197
 */
197
 
-