aboutsummaryrefslogtreecommitdiff
path: root/include/skiboot.h
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-11-18 14:42:27 +1100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-11-18 14:42:27 +1100
commitefa6bbc48ff549cd70352106b8d93f6e156295f5 (patch)
tree479897d503b4740467ee41f0dbb2f4fe5c44652b /include/skiboot.h
parent71664fd8d2d2550a56cc6a9c2b81797bfe90d613 (diff)
downloadskiboot-efa6bbc48ff549cd70352106b8d93f6e156295f5.zip
skiboot-efa6bbc48ff549cd70352106b8d93f6e156295f5.tar.gz
skiboot-efa6bbc48ff549cd70352106b8d93f6e156295f5.tar.bz2
Add functions to backtrace into a non-text buffer
Separate text translation from capture of the backtrace Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'include/skiboot.h')
-rw-r--r--include/skiboot.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/skiboot.h b/include/skiboot.h
index 53660af..8750c70 100644
--- a/include/skiboot.h
+++ b/include/skiboot.h
@@ -116,18 +116,6 @@ enum proc_gen {
};
extern enum proc_gen proc_gen;
-/* Boot stack top */
-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);