Rev 1820 | Rev 1854 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1820 | Rev 1839 | ||
|---|---|---|---|
| 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 */ |
- | |
| 150 | 149 | ||
| 151 | thread_arch_t arch; /**< Architecture-specific data. */ |
150 | thread_arch_t arch; /**< Architecture-specific data. */ |
| 152 | 151 | ||
| 153 | uint8_t *kstack; /**< Thread's kernel stack. */ |
152 | uint8_t *kstack; /**< Thread's kernel stack. */ |
| 154 | }; |
153 | }; |