Revamp of the video system in progress - adding support for multiple displays, multiple windows, and a full video mode selection API.
WARNING: None of the video drivers have been updated for the new API yet! The API is still under design and very fluid.
The code is now run through a consistent indent format:
indent -i4 -nut -nsc -br -ce
The headers are being converted to automatically generate doxygen documentation.
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "SDL_config.h"
24 #if defined(SDL_TIMER_DUMMY) || defined(SDL_TIMERS_DISABLED)
26 #include "SDL_timer.h"
27 #include "../SDL_timer_c.h"
47 #include "SDL_thread.h"
49 /* Data to handle a single periodic alarm */
50 static int timer_alive = 0;
51 static SDL_Thread *timer = NULL;
54 RunTimer (void *unused)
57 if (SDL_timer_running) {
58 SDL_ThreadedTimerCheck ();
65 /* This is only called if the event thread is not running */
67 SDL_SYS_TimerInit (void)
70 timer = SDL_CreateThread (RunTimer, NULL);
73 return (SDL_SetTimerThreaded (1));
77 SDL_SYS_TimerQuit (void)
81 SDL_WaitThread (timer, NULL);
87 SDL_SYS_StartTimer (void)
89 SDL_SetError ("Internal logic error: threaded timer in use");
94 SDL_SYS_StopTimer (void)
99 #endif /* SDL_TIMER_DUMMY || SDL_TIMERS_DISABLED */
100 /* vi: set ts=4 sw=4 expandtab: */