Mercurial > sdl-ios-xcode
diff src/thread/os2/SDL_systhread.c @ 1336:3692456e7b0f
Use SDL_ prefixed versions of C library functions.
FIXME:
Change #include <stdlib.h> to #include "SDL_stdlib.h"
Change #include <string.h> to #include "SDL_string.h"
Make sure nothing else broke because of this...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 06:59:48 +0000 |
parents | 450721ad5436 |
children | 604d73db6802 |
line wrap: on
line diff
--- a/src/thread/os2/SDL_systhread.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/thread/os2/SDL_systhread.c Tue Feb 07 06:59:48 2006 +0000 @@ -51,7 +51,7 @@ if (pThreadParms) { pfnCurrentEndThread = pThreadParms->pfnCurrentEndThread; - free(pThreadParms); + SDL_free(pThreadParms); } // Call endthread! if (pfnCurrentEndThread) @@ -60,7 +60,7 @@ int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread) { - pThreadStartParms pThreadParms = malloc(sizeof(tThreadStartParms)); + pThreadStartParms pThreadParms = SDL_malloc(sizeof(tThreadStartParms)); if (!pThreadParms) { SDL_SetError("Not enough memory to create thread");