summaryrefslogtreecommitdiff
path: root/firmware/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/kernel.c')
-rw-r--r--firmware/kernel.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/kernel.c b/firmware/kernel.c
index 1306b4b524..d21244202f 100644
--- a/firmware/kernel.c
+++ b/firmware/kernel.c
@@ -352,6 +352,11 @@ int tick_remove_task(void (*f)(void))
352 return -1; 352 return -1;
353} 353}
354 354
355#ifndef SIMULATOR
356/*
357 * Simulator versions in uisimulator/SIMVER/
358 */
359
355/**************************************************************************** 360/****************************************************************************
356 * Simple mutex functions 361 * Simple mutex functions
357 ****************************************************************************/ 362 ****************************************************************************/
@@ -375,3 +380,5 @@ void mutex_unlock(struct mutex *m)
375{ 380{
376 m->locked = false; 381 m->locked = false;
377} 382}
383
384#endif