Beispiel #1
0
void
SDL_SYS_SetupThread(const char *name)
{
    /* We set the thread name during SDL_SYS_CreateThread(). */
    /* Mask asynchronous signals for this thread */
    SDL_MaskSignals(NULL);
}
Beispiel #2
0
void SDL_SYS_SetupThread(void)
{
	/* Mask asynchronous signals for this thread */
	SDL_MaskSignals(NULL);
}