ref: 40ca9e8297ae8638c638f33b6ef5393ee88c7056
parent: a09487cb98273aee3ee950965b49f59d3fc3554f
author: Simon Howard <[email protected]>
date: Mon Jun 1 20:36:52 EDT 2009
Fix crash due to timer thread starting before resources allocated. Subversion-branch: /branches/opl-branch Subversion-revision: 1540
--- a/opl/opl_timer.c
+++ b/opl/opl_timer.c
@@ -149,19 +149,34 @@
return 0;
}
-int OPL_Timer_StartThread(void)
+static void InitResources(void)
{
- timer_thread_state = THREAD_STATE_RUNNING;
- timer_thread = SDL_CreateThread(ThreadFunction, NULL);
- timer_mutex = SDL_CreateMutex();
-
callback_queue = OPL_Queue_Create();
+ timer_mutex = SDL_CreateMutex();
callback_queue_mutex = SDL_CreateMutex();
+}
+
+static void FreeResources(void)
+{
+ OPL_Queue_Destroy(callback_queue);
+ SDL_DestroyMutex(callback_queue_mutex);
+ SDL_DestroyMutex(timer_mutex);
+}
+
+int OPL_Timer_StartThread(void)
+{
+ InitResources();
+
+ timer_thread_state = THREAD_STATE_RUNNING;
current_time = SDL_GetTicks();
+ timer_thread = SDL_CreateThread(ThreadFunction, NULL);
+
if (timer_thread == NULL)
{
timer_thread_state = THREAD_STATE_STOPPED;
+ FreeResources();
+
return 0;
}
@@ -176,6 +191,8 @@
{
SDL_Delay(1);
}
+
+ FreeResources();
}
void OPL_Timer_SetCallback(unsigned int ms, opl_callback_t callback, void *data)