Subversion Repositories HelenOS-historic

Rev

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

Rev 430 Rev 483
Line 50... Line 50...
50
 * For each possible kernel stack, structure
50
 * For each possible kernel stack, structure
51
 * of the following type will be placed at
51
 * of the following type will be placed at
52
 * the bottom of the stack.
52
 * the bottom of the stack.
53
 */
53
 */
54
struct the {
54
struct the {
55
    int preemption_disabled;    /**< Preemption disabled counter. */
55
    count_t preemption_disabled;    /**< Preemption disabled counter. */
56
    thread_t *thread;       /**< Current thread. */
56
    thread_t *thread;       /**< Current thread. */
57
    task_t *task;           /**< Current task. */
57
    task_t *task;           /**< Current task. */
58
    cpu_t *cpu;         /**< Executing cpu. */
58
    cpu_t *cpu;         /**< Executing cpu. */
59
    vm_t *vm;           /**< Current vm. */
59
    vm_t *vm;           /**< Current vm. */
60
};
60
};