summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 896cc0f..4bcea05 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -651,6 +651,11 @@ static inline void core_sleep(struct thread_entry **waking)
"msr cpsr_c, r0 \n"
: : "r"(waking) : "r0", "r1", "r2", "r3");
}
+#elif defined(CPU_TCC77X)
+static inline void core_sleep(struct thread_entry **waking)
+{
+ #warning TODO: Implement core_sleep
+}
#else
static inline void core_sleep(struct thread_entry **waking)
{