Add device name of Ecore_Event_Key
[platform/upstream/SDL.git] / test / testthread.c
1 /*
2   Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
3
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.
7
8   Permission is granted to anyone to use this software for any purpose,
9   including commercial applications, and to alter it and redistribute it
10   freely.
11 */
12
13 /* Simple test of the SDL threading code */
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <signal.h>
18
19 #include "SDL.h"
20
21 static SDL_TLSID tls;
22 static int alive = 0;
23
24 /* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
25 static void
26 quit(int rc)
27 {
28     SDL_Quit();
29     exit(rc);
30 }
31
32 int SDLCALL
33 ThreadFunc(void *data)
34 {
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));
38     while (alive) {
39         SDL_Log("Thread '%s' is alive!\n", (char *) data);
40         SDL_Delay(1 * 1000);
41     }
42     SDL_Log("Thread '%s' exiting!\n", (char *) data);
43     return (0);
44 }
45
46 static void
47 killed(int sig)
48 {
49     SDL_Log("Killed with SIGTERM, waiting 5 seconds to exit\n");
50     SDL_Delay(5 * 1000);
51     alive = 0;
52     quit(0);
53 }
54 int
55 main(int argc, char *argv[])
56 {
57     SDL_Thread *thread;
58
59     /* Enable standard application logging */
60     SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
61
62     /* Load the SDL library */
63     if (SDL_Init(0) < 0) {
64         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
65         return (1);
66     }
67
68     tls = SDL_TLSCreate();
69     SDL_assert(tls);
70     SDL_TLSSet(tls, "main thread", NULL);
71     SDL_Log("Main thread data initially: %s\n", (const char *)SDL_TLSGet(tls));
72
73     alive = 1;
74     thread = SDL_CreateThread(ThreadFunc, "One", "#1");
75     if (thread == NULL) {
76         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create thread: %s\n", SDL_GetError());
77         quit(1);
78     }
79     SDL_Delay(5 * 1000);
80     SDL_Log("Waiting for thread #1\n");
81     alive = 0;
82     SDL_WaitThread(thread, NULL);
83
84     SDL_Log("Main thread data finally: %s\n", (const char *)SDL_TLSGet(tls));
85
86     alive = 1;
87     signal(SIGTERM, killed);
88     thread = SDL_CreateThread(ThreadFunc, "Two", "#2");
89     if (thread == NULL) {
90         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create thread: %s\n", SDL_GetError());
91         quit(1);
92     }
93     raise(SIGTERM);
94
95     SDL_Quit();                 /* Never reached */
96     return (0);                 /* Never reached */
97 }