diff options
Diffstat (limited to 'uisimulator/sdl/thread-sdl.h')
-rw-r--r-- | uisimulator/sdl/thread-sdl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uisimulator/sdl/thread-sdl.h b/uisimulator/sdl/thread-sdl.h index 90dffd6806..3739130f97 100644 --- a/uisimulator/sdl/thread-sdl.h +++ b/uisimulator/sdl/thread-sdl.h @@ -23,7 +23,8 @@ #include "SDL_thread.h" extern SDL_Thread *gui_thread; /* The "main" thread */ -void kill_sim_threads(); /* Kill all the rockbox sim threads */ +bool thread_sdl_init(void *param); /* Init the sim threading API - thread created calls app_main */ +void thread_sdl_shutdown(void); /* Shut down all kernel threads gracefully */ void thread_sdl_lock(void); /* Sync with SDL threads */ void thread_sdl_unlock(void); /* Sync with SDL threads */ |