summaryrefslogtreecommitdiff
path: root/uisimulator/x11/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/thread.c')
-rw-r--r--uisimulator/x11/thread.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/uisimulator/x11/thread.c b/uisimulator/x11/thread.c
index e37373dc54..25adf6a3c0 100644
--- a/uisimulator/x11/thread.c
+++ b/uisimulator/x11/thread.c
@@ -94,3 +94,18 @@ void sim_sleep(int ticks)
94 94
95 pthread_mutex_lock(&mp); /* get it again */ 95 pthread_mutex_lock(&mp); /* get it again */
96} 96}
97
98void mutex_init(struct mutex *m)
99{
100 (void)m;
101}
102
103void mutex_lock(struct mutex *m)
104{
105 (void)m;
106}
107
108void mutex_unlock(struct mutex *m)
109{
110 (void)m;
111}