コード例 #1
0
ファイル: SDL_systhread.c プロジェクト: AG-Dev/wesnoth_ios
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);
}
コード例 #2
0
ファイル: SDL_systhread.c プロジェクト: rickcaudill/Pyro
void SDL_SYS_SetupThread(void)
{
	/* Mask asynchronous signals for this thread */
	SDL_MaskSignals(NULL);
}