MacOS Classic is no longer supported.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402025
This commit is contained in:
Sam Lantinga 2006-08-10 14:54:23 +00:00
parent f63cb9f282
commit d942ec3207
47 changed files with 4 additions and 6961 deletions

View file

@ -157,11 +157,7 @@ SDL_StartEventThread(Uint32 flags)
#if !SDL_THREADS_DISABLED
SDL_EventQ.lock = SDL_CreateMutex();
if (SDL_EventQ.lock == NULL) {
#ifdef __MACOS__ /* MacOS classic you can't multithread, so no lock needed */
;
#else
return (-1);
#endif
}
#endif /* !SDL_THREADS_DISABLED */
SDL_EventQ.active = 1;

View file

@ -37,11 +37,8 @@
#define CANT_THREAD_EVENTS
#endif
#ifdef __MACOS__ /* MacOS 7/8 don't support preemptive multi-tasking */
#define CANT_THREAD_EVENTS
#endif
#ifdef __OS2__ /* The OS/2 event loop runs in a separate thread */
#define MUST_THREAD_EVENTS
#endif
/* vi: set ts=4 sw=4 expandtab: */