aboutsummaryrefslogtreecommitdiff
path: root/include/skiboot.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/skiboot.h')
-rw-r--r--include/skiboot.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/skiboot.h b/include/skiboot.h
index 1a1f96f..53660af 100644
--- a/include/skiboot.h
+++ b/include/skiboot.h
@@ -122,6 +122,11 @@ extern void *boot_stack_top;
/* For use by debug code */
extern void backtrace(void);
extern void __backtrace(char *bt_buf, int bt_buf_len);
+#ifdef STACK_CHECK_ENABLED
+extern void check_stacks(void);
+#else
+static inline void check_stacks(void) { }
+#endif
/* Convert a 4-bit number to a hex char */
extern char tohex(uint8_t nibble);