From 08132a5468bcb985d887061359c543e9d4d0f538 Mon Sep 17 00:00:00 2001
From: Luis Gerhorst <privat@luisgerhorst.de>
Date: Wed, 16 Dec 2020 10:14:35 +0100
Subject: [PATCH] Disable k_msleep call while we don't have a timer

---
 samples/synchronization/src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/samples/synchronization/src/main.c b/samples/synchronization/src/main.c
index 8b3afb247ba..aeb65140a96 100644
--- a/samples/synchronization/src/main.c
+++ b/samples/synchronization/src/main.c
@@ -60,7 +60,7 @@ void helloLoop(const char *my_name,
 		}
 
 		/* wait a while, then let other thread have a turn */
-		k_msleep(SLEEPTIME);
+		/* k_msleep(SLEEPTIME); */
 		k_sem_give(other_sem);
 	}
 }
-- 
GitLab