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
|
|
|
*/
|
|
|
|
|
|
|
|
/* Win32 thread management routines for SDL */
|
|
|
|
|
2006-02-06 08:28:51 +00:00
|
|
|
#include "SDL_windows.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
#include "SDL_error.h"
|
|
|
|
#include "SDL_thread.h"
|
2006-02-06 08:28:51 +00:00
|
|
|
#include "SDL_stdlib.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
#include "SDL_systhread.h"
|
|
|
|
|
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;
|
|
|
|
free(pThreadParms);
|
|
|
|
}
|
|
|
|
// Call endthread!
|
|
|
|
if (pfnCurrentEndThread)
|
|
|
|
(*pfnCurrentEndThread)(0);
|
|
|
|
return(0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
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-01-04 21:01:49 +00:00
|
|
|
unsigned threadid;
|
2006-02-06 08:28:51 +00:00
|
|
|
pThreadStartParms pThreadParms = (pThreadStartParms)malloc(sizeof(tThreadStartParms));
|
|
|
|
if (!pThreadParms) {
|
|
|
|
SDL_OutOfMemory();
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|