diff options
| author | Dan Everton <dan@iocaine.org> | 2006-02-12 12:47:20 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2006-02-12 12:47:20 +0000 |
| commit | d66c0e5d091cbc16f7a52a9d9ead01b481c70657 (patch) | |
| tree | 228e39060ab2517e3d977fd7ea7cd4b18a1d9829 | |
| parent | b57dc4cc48ed1e34cb5e01853e349812ff269b3e (diff) | |
| download | rockbox-d66c0e5d091cbc16f7a52a9d9ead01b481c70657.zip rockbox-d66c0e5d091cbc16f7a52a9d9ead01b481c70657.tar.gz rockbox-d66c0e5d091cbc16f7a52a9d9ead01b481c70657.tar.bz2 rockbox-d66c0e5d091cbc16f7a52a9d9ead01b481c70657.tar.xz | |
Correct mutex locking order in runthread. Doesn't seem to fix anything though.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8664 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/sdl/thread-sdl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/uisimulator/sdl/thread-sdl.c b/uisimulator/sdl/thread-sdl.c index 41a60c9..587a5cc 100644 --- a/uisimulator/sdl/thread-sdl.c +++ b/uisimulator/sdl/thread-sdl.c @@ -46,7 +46,7 @@ void sim_sleep(int ticks) int runthread(void *data) { - SDL_mutexV(m); + SDL_mutexP(m); ((void(*)())data) (); SDL_mutexV(m); return 0; @@ -64,6 +64,8 @@ int create_thread(void (*fp)(void), void* sp, int stk_size) threads[threadCount++] = SDL_CreateThread(runthread, fp); + yield(); + return 0; } |