diff options
author | Brandon Low <lostlogic@rockbox.org> | 2006-04-12 15:38:56 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@rockbox.org> | 2006-04-12 15:38:56 +0000 |
commit | 9cde77060a05ed9b0dae8dffdb7f9ed77734bbf9 (patch) | |
tree | 21ffc08f9f2edfbda593c1954ac131ac4fe54230 | |
parent | 1b18dd0f179011d97d1d5e56724d0c454937c443 (diff) |
Patch 5107 from Steve Bavin, enable locking on sdl sim, now mutexes actually MUT EX on the SDL sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9638 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | docs/CREDITS | 1 | ||||
-rw-r--r-- | uisimulator/sdl/kernel.c | 11 |
2 files changed, 8 insertions, 4 deletions
diff --git a/docs/CREDITS b/docs/CREDITS index 4c25a979e5..2f1d451d2d 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -197,3 +197,4 @@ Rani Hod Tom Ross Anton Romanov Jean-Luc Ohl +Steve Bavin diff --git a/uisimulator/sdl/kernel.c b/uisimulator/sdl/kernel.c index c17dc49dd6..b9ffe0eefe 100644 --- a/uisimulator/sdl/kernel.c +++ b/uisimulator/sdl/kernel.c @@ -150,18 +150,21 @@ int tick_remove_task(void (*f)(void)) return -1; } -/* TODO: Implement mutexes for win32 */ +/* Very simple mutex simulation - won't work with pre-emptive + multitasking, but is better than nothing at all */ void mutex_init(struct mutex *m) { - (void)m; + m->locked = false; } void mutex_lock(struct mutex *m) { - (void)m; + while(m->locked) + switch_thread(); + m->locked = true; } void mutex_unlock(struct mutex *m) { - (void)m; + m->locked = false; } |