diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-12-13 16:33:15 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2018-12-13 16:33:15 -0500 |
| commit | bfa66861effb6bb1d9da1906b4b760cbdbe3f030 (patch) | |
| tree | 0ac366ad480291511055898deb9fa52caeccf402 /supervisor/shared/stack.h | |
| parent | a7a24096f469b1ee95242d4e7f58929cad3699ed (diff) | |
| parent | 5e4b3a8fb68265d89fe7d8d5d35d16bc28917f3a (diff) | |
Merge remote-tracking branch 'adafruit/master' into bleio-rev
Diffstat (limited to 'supervisor/shared/stack.h')
| -rwxr-xr-x | supervisor/shared/stack.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/supervisor/shared/stack.h b/supervisor/shared/stack.h index 3a5c18e7d..1fb43be57 100755 --- a/supervisor/shared/stack.h +++ b/supervisor/shared/stack.h @@ -37,5 +37,12 @@ void stack_init(void); void stack_resize(void); void set_next_stack_size(uint32_t size); uint32_t get_current_stack_size(void); +bool stack_ok(void); + +// Use this after any calls into a library which may use a lot of stack. This will raise a Python +// exception when the stack has likely overwritten a portion of the heap. +void assert_heap_ok(void); + +#define STACK_CANARY_VALUE 0x017829ef #endif // MICROPY_INCLUDED_SUPERVISOR_STACK_H |
