Subversion Repositories HelenOS-historic

Rev

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

Rev 410 Rev 413
Line 98... Line 98...
98
    cpu_t *cpu;             /**< Thread's CPU. */
98
    cpu_t *cpu;             /**< Thread's CPU. */
99
    task_t *task;               /**< Containing task. */
99
    task_t *task;               /**< Containing task. */
100
 
100
 
101
    __u64 ticks;                /**< Ticks before preemption. */
101
    __u64 ticks;                /**< Ticks before preemption. */
102
 
102
 
103
    int pri;                /**< Thread's priority. Implemented as index of run queue. */
103
    int priority;               /**< Thread's priority. Implemented as index to CPU->rq */
104
    __u32 tid;              /**< Thread ID. */
104
    __u32 tid;              /**< Thread ID. */
105
   
105
   
106
    ARCH_THREAD_DATA;           /**< Architecture-specific data. */
106
    ARCH_THREAD_DATA;           /**< Architecture-specific data. */
107
 
107
 
108
    __u8 *kstack;               /**< Thread's kernel stack. */
108
    __u8 *kstack;               /**< Thread's kernel stack. */