2001-04-26 16:45:43 +00:00
|
|
|
/*
|
|
|
|
SDL - Simple DirectMedia Layer
|
2006-02-01 06:32:25 +00:00
|
|
|
Copyright (C) 1997-2006 Sam Lantinga
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2006-02-01 06:32:25 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2001-04-26 16:45:43 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2006-02-01 06:32:25 +00:00
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2006-02-01 06:32:25 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-02-01 06:32:25 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
Sam Lantinga
|
2001-12-14 12:38:15 +00:00
|
|
|
slouken@libsdl.org
|
2001-04-26 16:45:43 +00:00
|
|
|
*/
|
2006-02-21 08:46:50 +00:00
|
|
|
#include "SDL_config.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* Win32 thread management routines for SDL */
|
|
|
|
|
2006-02-25 22:18:25 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
#include "SDL_thread.h"
|
2006-02-16 10:11:48 +00:00
|
|
|
#include "../SDL_thread_c.h"
|
|
|
|
#include "../SDL_systhread.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-03-06 07:42:36 +00:00
|
|
|
#ifndef SDL_PASSED_BEGINTHREAD_ENDTHREAD
|
|
|
|
#ifndef _WIN32_WCE
|
|
|
|
/* We'll use the C library from this DLL */
|
|
|
|
#include <process.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __GNUC__
|
|
|
|
typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
|
|
|
|
unsigned (__stdcall *func)(void *), void *arg,
|
|
|
|
unsigned, unsigned *threadID);
|
|
|
|
typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
|
2006-05-07 03:40:06 +00:00
|
|
|
#elif defined(__WATCOMC__)
|
|
|
|
/* This is for Watcom targets except OS2 */
|
|
|
|
#if __WATCOMC__ < 1240
|
|
|
|
#define __watcall
|
|
|
|
#endif
|
|
|
|
typedef unsigned long (__watcall *pfnSDL_CurrentBeginThread) (void *, unsigned,
|
|
|
|
unsigned (__stdcall *func)(void *), void *arg,
|
|
|
|
unsigned, unsigned *threadID);
|
|
|
|
typedef void (__watcall *pfnSDL_CurrentEndThread)(unsigned code);
|
2006-03-06 07:42:36 +00:00
|
|
|
#else
|
|
|
|
typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
|
|
|
|
unsigned (__stdcall *func)(void *), void *arg,
|
|
|
|
unsigned, unsigned *threadID);
|
|
|
|
typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
|
|
|
|
#endif
|
|
|
|
#endif /* !SDL_PASSED_BEGINTHREAD_ENDTHREAD */
|
|
|
|
|
|
|
|
|
2006-02-06 08:28:51 +00:00
|
|
|
typedef struct ThreadStartParms
|
|
|
|
{
|
|
|
|
void *args;
|
|
|
|
pfnSDL_CurrentEndThread pfnCurrentEndThread;
|
|
|
|
} tThreadStartParms, *pThreadStartParms;
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-01-04 21:01:49 +00:00
|
|
|
static unsigned __stdcall RunThread(void *data)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-02-06 08:28:51 +00:00
|
|
|
pThreadStartParms pThreadParms = (pThreadStartParms)data;
|
|
|
|
pfnSDL_CurrentEndThread pfnCurrentEndThread = NULL;
|
|
|
|
|
|
|
|
// Call the thread function!
|
|
|
|
SDL_RunThread(pThreadParms->args);
|
|
|
|
|
|
|
|
// Get the current endthread we have to use!
|
|
|
|
if (pThreadParms)
|
|
|
|
{
|
|
|
|
pfnCurrentEndThread = pThreadParms->pfnCurrentEndThread;
|
2006-02-07 06:59:48 +00:00
|
|
|
SDL_free(pThreadParms);
|
2006-02-06 08:28:51 +00:00
|
|
|
}
|
|
|
|
// Call endthread!
|
|
|
|
if (pfnCurrentEndThread)
|
|
|
|
(*pfnCurrentEndThread)(0);
|
|
|
|
return(0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-03-06 07:42:36 +00:00
|
|
|
#ifdef SDL_PASSED_BEGINTHREAD_ENDTHREAD
|
2006-02-06 08:28:51 +00:00
|
|
|
int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-03-06 07:42:36 +00:00
|
|
|
#else
|
|
|
|
int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
pfnSDL_CurrentBeginThread pfnBeginThread = NULL;
|
|
|
|
pfnSDL_CurrentEndThread pfnEndThread = NULL;
|
|
|
|
#else
|
|
|
|
pfnSDL_CurrentBeginThread pfnBeginThread = _beginthreadex;
|
|
|
|
pfnSDL_CurrentEndThread pfnEndThread = _endthreadex;
|
|
|
|
#endif
|
|
|
|
#endif /* SDL_PASSED_BEGINTHREAD_ENDTHREAD */
|
2006-01-04 21:01:49 +00:00
|
|
|
unsigned threadid;
|
2006-03-06 06:00:45 +00:00
|
|
|
pThreadStartParms pThreadParms = (pThreadStartParms)SDL_malloc(sizeof(tThreadStartParms));
|
|
|
|
if (!pThreadParms) {
|
2006-02-06 08:28:51 +00:00
|
|
|
SDL_OutOfMemory();
|
2006-03-06 06:00:45 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
2006-02-06 08:28:51 +00:00
|
|
|
|
2006-03-06 06:00:45 +00:00
|
|
|
// Save the function which we will have to call to clear the RTL of calling app!
|
|
|
|
pThreadParms->pfnCurrentEndThread = pfnEndThread;
|
|
|
|
// Also save the real parameters we have to pass to thread function
|
|
|
|
pThreadParms->args = args;
|
2006-02-06 08:28:51 +00:00
|
|
|
|
|
|
|
if (pfnBeginThread) {
|
|
|
|
thread->handle = (SYS_ThreadHandle) pfnBeginThread(NULL, 0, RunThread,
|
|
|
|
pThreadParms, 0, &threadid);
|
|
|
|
} else {
|
|
|
|
thread->handle = CreateThread(NULL, 0, RunThread, pThreadParms, 0, &threadid);
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
if (thread->handle == NULL) {
|
|
|
|
SDL_SetError("Not enough resources to create thread");
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDL_SYS_SetupThread(void)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Uint32 SDL_ThreadID(void)
|
|
|
|
{
|
|
|
|
return((Uint32)GetCurrentThreadId());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDL_SYS_WaitThread(SDL_Thread *thread)
|
|
|
|
{
|
|
|
|
WaitForSingleObject(thread->handle, INFINITE);
|
|
|
|
CloseHandle(thread->handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* WARNING: This function is really a last resort.
|
|
|
|
* Threads should be signaled and then exit by themselves.
|
|
|
|
* TerminateThread() doesn't perform stack and DLL cleanup.
|
|
|
|
*/
|
|
|
|
void SDL_SYS_KillThread(SDL_Thread *thread)
|
|
|
|
{
|
|
|
|
TerminateThread(thread->handle, FALSE);
|
|
|
|
}
|