Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
WinRT: made testthread to use SDL_Log, not printf or fprintf, for MSV…
Browse files Browse the repository at this point in the history
…C++ logging
  • Loading branch information
DavidLudwig committed Nov 24, 2012
1 parent 93870bb commit 8f956d0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/testthread.c
Expand Up @@ -32,20 +32,20 @@ quit(int rc)
int SDLCALL int SDLCALL
ThreadFunc(void *data) ThreadFunc(void *data)
{ {
printf("Started thread %s: My thread id is %lu\n", SDL_Log("Started thread %s: My thread id is %lu\n",
(char *) data, SDL_ThreadID()); (char *) data, SDL_ThreadID());
while (alive) { while (alive) {
printf("Thread '%s' is alive!\n", (char *) data); SDL_Log("Thread '%s' is alive!\n", (char *) data);
SDL_Delay(1 * 1000); SDL_Delay(1 * 1000);
} }
printf("Thread '%s' exiting!\n", (char *) data); SDL_Log("Thread '%s' exiting!\n", (char *) data);
return (0); return (0);
} }


static void static void
killed(int sig) killed(int sig)
{ {
printf("Killed with SIGTERM, waiting 5 seconds to exit\n"); SDL_Log("Killed with SIGTERM, waiting 5 seconds to exit\n");
SDL_Delay(5 * 1000); SDL_Delay(5 * 1000);
alive = 0; alive = 0;
quit(0); quit(0);
Expand All @@ -58,26 +58,26 @@ main(int argc, char *argv[])


/* Load the SDL library */ /* Load the SDL library */
if (SDL_Init(0) < 0) { if (SDL_Init(0) < 0) {
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError()); SDL_LogError(SDL_LOG_CATEGORY_ERROR, "Couldn't initialize SDL: %s\n", SDL_GetError());
return (1); return (1);
} }


alive = 1; alive = 1;
thread = SDL_CreateThread(ThreadFunc, "One", "#1"); thread = SDL_CreateThread(ThreadFunc, "One", "#1");
if (thread == NULL) { if (thread == NULL) {
fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError()); SDL_LogError(SDL_LOG_CATEGORY_ERROR, "Couldn't create thread: %s\n", SDL_GetError());
quit(1); quit(1);
} }
SDL_Delay(5 * 1000); SDL_Delay(5 * 1000);
printf("Waiting for thread #1\n"); SDL_Log("Waiting for thread #1\n");
alive = 0; alive = 0;
SDL_WaitThread(thread, NULL); SDL_WaitThread(thread, NULL);


alive = 1; alive = 1;
signal(SIGTERM, killed); signal(SIGTERM, killed);
thread = SDL_CreateThread(ThreadFunc, "Two", "#2"); thread = SDL_CreateThread(ThreadFunc, "Two", "#2");
if (thread == NULL) { if (thread == NULL) {
fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError()); SDL_LogError(SDL_LOG_CATEGORY_ERROR, "Couldn't create thread: %s\n", SDL_GetError());
quit(1); quit(1);
} }
raise(SIGTERM); raise(SIGTERM);
Expand Down

0 comments on commit 8f956d0

Please sign in to comment.