summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-08-06 21:52:11 -0400
committerSolomon Peachy <pizza@shaftnet.org>2018-11-09 02:32:39 +0100
commit74dd276fe16ecd3de46d866e631273f286fbf7f2 (patch)
treeb4994b665e575b4a2369398f95713496e3f639f6 /firmware/export
parentb5fb9781a6f40d328f10e4c0d5cd818d9e22173a (diff)
debug: Wrap rb_backtrace with HAVE_RB_BACKTRACE instead of CPU_ARM
Basically, preparation for a non-ARM backtrace support. Change-Id: Icfd09fbc65a98f859e2a19f8d1111827a262a969
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/system.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h
index f26b3d7f56..ebeef9c004 100644
--- a/firmware/export/system.h
+++ b/firmware/export/system.h
@@ -253,6 +253,11 @@ static inline void cpu_boost_unlock(void)
#define MIN_STACK_ALIGN 8
#endif
+/* Define this if target has support for generating backtraces */
+#ifdef CPU_ARM
+ #define HAVE_RB_BACKTRACE
+#endif
+
#ifndef MIN_STACK_ALIGN
#define MIN_STACK_ALIGN (sizeof (uintptr_t))
#endif