1
0
Fork 0
forked from len0rd/rockbox

Fix last reds, database tool definitely needs rework.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26072 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-05-15 22:25:06 +00:00
parent 3763ace3ec
commit 06adb38326
3 changed files with 6 additions and 4 deletions

View file

@ -40,12 +40,12 @@ void mutex_unlock(struct mutex *m)
(void)m;
}
void thread_sdl_thread_lock(void *me)
void sim_thread_lock(void *me)
{
(void)me;
}
void * thread_sdl_thread_unlock(void)
void * sim_thread_unlock(void)
{
return (void*)1;
}