ao_task_stack_0.h
Task stack stub

Include

stddef.h

Types

ao_task_stack_t

typedef struct ao_task_stack_t ao_task_stack_t;

Represents stack-related data of a task.

Types

ao_task_stack_t

struct ao_task_stack_t { };

Functions

ao_task_get_stack_beginning

ao_task_get_stack_beginning_locked

void * ao_task_get_stack_beginning       (ao_task_t const * t);
void * ao_task_get_stack_beginning_locked(ao_task_t const * t);

Gets the stack beginning of the specified task. The latter function assumes, that the kernel is locked.

ao_task_get_stack_size

ao_task_get_stack_size_locked

size_t ao_task_get_stack_size       (ao_task_t const * t);
size_t ao_task_get_stack_size_locked(ao_task_t const * t);

Gets the stack size of the specified task. The latter function assumes, that the kernel is locked.