Rev 2030 | Rev 2042 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2030 | Rev 2031 | ||
---|---|---|---|
Line 144... | Line 144... | ||
144 | cpu_t *cpu; /**< Thread's CPU. */ |
144 | cpu_t *cpu; /**< Thread's CPU. */ |
145 | task_t *task; /**< Containing task. */ |
145 | task_t *task; /**< Containing task. */ |
146 | 146 | ||
147 | uint64_t ticks; /**< Ticks before preemption. */ |
147 | uint64_t ticks; /**< Ticks before preemption. */ |
148 | 148 | ||
149 | uint64_t cycles; /**< Task accounting. */ |
149 | uint64_t cycles; /**< Thread accounting. */ |
150 | uint64_t last_cycle; /**< Last sampled cycle. */ |
150 | uint64_t last_cycle; /**< Last sampled cycle. */ |
151 | 151 | ||
152 | int priority; /**< Thread's priority. Implemented as index to CPU->rq */ |
152 | int priority; /**< Thread's priority. Implemented as index to CPU->rq */ |
153 | uint32_t tid; /**< Thread ID. */ |
153 | uint32_t tid; /**< Thread ID. */ |
154 | 154 |