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 */
24 /* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
33 ThreadFunc(void *data)
35 SDL_TLSSet(tls, "baby thread", NULL);
36 SDL_Log("Started thread %s: My thread id is %lu, thread data = %s\n",
37 (char *) data, SDL_ThreadID(), (const char *)SDL_TLSGet(tls));
39 SDL_Log("Thread '%s' is alive!\n", (char *) data);
42 SDL_Log("Thread '%s' exiting!\n", (char *) data);
49 SDL_Log("Killed with SIGTERM, waiting 5 seconds to exit\n");
56 main(int argc, char *argv[])
60 /* Enable standard application logging */
61 SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
63 /* Load the SDL library */
64 if (SDL_Init(0) < 0) {
65 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
69 tls = SDL_TLSCreate();
71 SDL_TLSSet(tls, "main thread", NULL);
72 SDL_Log("Main thread data initially: %s\n", (const char *)SDL_TLSGet(tls));
75 thread = SDL_CreateThread(ThreadFunc, "One", "#1");
77 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create thread: %s\n", SDL_GetError());
81 SDL_Log("Waiting for thread #1\n");
83 SDL_WaitThread(thread, NULL);
85 SDL_Log("Main thread data finally: %s\n", (const char *)SDL_TLSGet(tls));
88 signal(SIGTERM, killed);
89 thread = SDL_CreateThread(ThreadFunc, "Two", "#2");
91 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create thread: %s\n", SDL_GetError());
96 SDL_Quit(); /* Never reached */
97 return (0); /* Never reached */