From 3362fe1de066df8c6910f687b815e632e98c7ca4 Mon Sep 17 00:00:00 2001
From: Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
Date: Sat, 26 Oct 2013 14:45:51 +0200
Subject: [PATCH] switch thread instead of exiting context

lpm_sleep is always being called from within a thread context, not
from an isr context, therefore it should use thread_yield instead of
cpu_switch_context_exit.
---
 native/drivers/native-uart0.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/native/drivers/native-uart0.c b/native/drivers/native-uart0.c
index 9f77a72d0c..70d545a36b 100644
--- a/native/drivers/native-uart0.c
+++ b/native/drivers/native-uart0.c
@@ -66,7 +66,7 @@ void _native_handle_uart0_input()
     uart0_notify_thread();
 
     _native_in_isr = 0;
-    cpu_switch_context_exit();
+    thread_yield();
 }
 
 int _native_set_uart_fds(void)
-- 
GitLab