RTEMS
5.0.0
|
Stack Checker Information. More...
Files | |
file | check.c |
Stack Overflow Check User Extension SetNOTE: This extension set automatically determines at initialization time whether the stack for this CPU grows up or down and installs the correct extension routines for that direction. | |
Macros | |
#define | RTEMS_STACK_CHECKER_EXTENSION |
Stack Checker Extension Set Definition. More... | |
Functions | |
bool | rtems_stack_checker_is_blown (void) |
Checks if current task is blown its stack. More... | |
void | rtems_stack_checker_report_usage (void) |
Print the stack usage report using printk. More... | |
void | rtems_stack_checker_report_usage_with_plugin (const rtems_printer *printer) |
Print the stack usage report using caller's routine. More... | |
bool | rtems_stack_checker_create_extension (Thread_Control *running, Thread_Control *the_thread) |
Stack Checker Task Create Extension. More... | |
void | rtems_stack_checker_begin_extension (Thread_Control *executing) |
void | rtems_stack_checker_switch_extension (Thread_Control *running, Thread_Control *heir) |
Stack Checker Task Context Switch Extension. More... | |
Stack Checker Information.
This include file contains information necessary to utilize and install the stack checker mechanism.
#define RTEMS_STACK_CHECKER_EXTENSION |
Stack Checker Extension Set Definition.
This macro defines the user extension handler set for the stack checker. This macro is normally only used by confdefs.h.
bool rtems_stack_checker_create_extension | ( | Thread_Control * | running, |
Thread_Control * | the_thread | ||
) |
Stack Checker Task Create Extension.
This method is the task create extension for the stack checker.
[in] | running | points to the currently executing task |
[in] | the_thread | points to the newly created task |
bool rtems_stack_checker_is_blown | ( | void | ) |
Checks if current task is blown its stack.
This method is used to determine if the current stack pointer of the currently executing task is within bounds.
This | method returns true if the currently executing task has blown its stack. |
void rtems_stack_checker_report_usage | ( | void | ) |
Print the stack usage report using printk.
This method prints a stack usage report for the curently executing task.
void rtems_stack_checker_report_usage_with_plugin | ( | const rtems_printer * | printer | ) |
Print the stack usage report using caller's routine.
This method prints a stack usage report for the curently executing task.
[in] | context | is the context to pass to the print handler |
[in] | is the print handler |
void rtems_stack_checker_switch_extension | ( | Thread_Control * | running, |
Thread_Control * | heir | ||
) |
Stack Checker Task Context Switch Extension.
This method is the task context switch extension for the stack checker.
[in] | running | points to the currently executing task which is being context switched out |
[in] | running | points to the heir task which we are switching to |