diff include/SDL_timer.h @ 1028:5ba65305c954

Fix various problems with the timer code. * SDL_timer_running wasn't always updated correctly. * Fixed occasional crash in SDL_SetTimer() when clearing threaded timers * It was possible to get both the timer thread and event thread running * Other misc. cleanup
author Sam Lantinga <slouken@libsdl.org>
date Thu, 13 Jan 2005 23:24:56 +0000
parents b8d311d90021
children c9b51268668f
line wrap: on
line diff
--- a/include/SDL_timer.h	Wed Jan 12 19:38:24 2005 +0000
+++ b/include/SDL_timer.h	Thu Jan 13 23:24:56 2005 +0000
@@ -81,6 +81,8 @@
  * in the same program, as it is implemented using setitimer().  You also
  * should not use this function in multi-threaded applications as signals
  * to multi-threaded apps have undefined behavior in some implementations.
+ *
+ * This function returns 0 if successful, or -1 if there was an error.
  */
 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);