2 Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
13 /* Simple test of the SDL threading code and error handling */
23 /* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
32 ThreadFunc(void *data)
34 /* Set the child thread error string */
35 SDL_SetError("Thread %s (%lu) had a problem: %s",
36 (char *) data, SDL_ThreadID(), "nevermind");
38 SDL_Log("Thread '%s' is alive!\n", (char *) data);
41 SDL_Log("Child thread error string: %s\n", SDL_GetError());
46 main(int argc, char *argv[])
50 /* Enable standard application logging */
51 SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
53 /* Load the SDL library */
54 if (SDL_Init(0) < 0) {
55 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
59 /* Set the error value for the main thread */
60 SDL_SetError("No worries");
63 thread = SDL_CreateThread(ThreadFunc, NULL, "#1");
65 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create thread: %s\n", SDL_GetError());
69 SDL_Log("Waiting for thread #1\n");
71 SDL_WaitThread(thread, NULL);
73 SDL_Log("Main thread error string: %s\n", SDL_GetError());