2015-06-21 09:33:46 -06:00
|
|
|
/*
|
2024-01-01 14:15:26 -07:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Test the thread and mutex locking functions
|
|
|
|
Also exercises the system's signal/thread interaction
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h> /* for atexit() */
|
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-14 21:58:20 -07:00
|
|
|
#include <SDL3/SDL_main.h>
|
2023-03-16 09:56:16 -06:00
|
|
|
#include <SDL3/SDL_test.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-04-28 08:31:12 -06:00
|
|
|
static SDL_Mutex *mutex = NULL;
|
2015-06-21 09:33:46 -06:00
|
|
|
static SDL_threadID mainthread;
|
2023-02-23 12:33:51 -07:00
|
|
|
static SDL_AtomicInt doterminate;
|
2023-03-16 09:56:16 -06:00
|
|
|
static int nb_threads = 6;
|
|
|
|
static SDL_Thread **threads;
|
|
|
|
static int worktime = 1000;
|
|
|
|
static SDLTest_CommonState *state;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-02-01 16:21:53 -07:00
|
|
|
/**
|
2015-06-21 09:33:46 -06:00
|
|
|
* SDL_Quit() shouldn't be used with atexit() directly because
|
2023-03-09 16:10:00 -07:00
|
|
|
* calling conventions may differ...
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
SDL_Quit_Wrapper(void)
|
|
|
|
{
|
|
|
|
SDL_Quit();
|
2023-03-16 09:56:16 -06:00
|
|
|
SDLTest_CommonDestroyState(state);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2023-03-08 08:12:45 -07:00
|
|
|
static void printid(void)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: exiting\n", SDL_ThreadID());
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2023-03-08 08:12:45 -07:00
|
|
|
static void terminate(int sig)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2022-12-01 14:07:03 -07:00
|
|
|
(void)signal(SIGINT, terminate);
|
2016-01-03 04:50:50 -07:00
|
|
|
SDL_AtomicSet(&doterminate, 1);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2023-03-08 08:12:45 -07:00
|
|
|
static void closemutex(int sig)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_threadID id = SDL_ThreadID();
|
|
|
|
int i;
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: Cleaning up...\n", id == mainthread ? 0 : id);
|
2016-01-03 04:50:50 -07:00
|
|
|
SDL_AtomicSet(&doterminate, 1);
|
2023-03-16 09:56:16 -06:00
|
|
|
if (threads) {
|
|
|
|
for (i = 0; i < nb_threads; ++i) {
|
|
|
|
SDL_WaitThread(threads[i], NULL);
|
|
|
|
}
|
|
|
|
SDL_free(threads);
|
|
|
|
threads = NULL;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_DestroyMutex(mutex);
|
2023-04-12 03:07:28 -06:00
|
|
|
/* Let 'main()' return normally */
|
|
|
|
if (sig != 0) {
|
|
|
|
exit(sig);
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2023-03-08 08:12:45 -07:00
|
|
|
static int SDLCALL
|
2023-03-16 16:47:35 -06:00
|
|
|
Run(void *data)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2022-11-27 09:38:43 -07:00
|
|
|
if (SDL_ThreadID() == mainthread) {
|
2022-12-01 14:07:03 -07:00
|
|
|
(void)signal(SIGTERM, closemutex);
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: starting up", SDL_ThreadID());
|
2016-01-03 04:50:50 -07:00
|
|
|
while (!SDL_AtomicGet(&doterminate)) {
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: ready to work\n", SDL_ThreadID());
|
2023-10-25 08:00:26 -06:00
|
|
|
SDL_LockMutex(mutex);
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: start work!\n", SDL_ThreadID());
|
|
|
|
SDL_Delay(1 * worktime);
|
|
|
|
SDL_Log("Thread %lu: work done!\n", SDL_ThreadID());
|
2023-10-25 08:00:26 -06:00
|
|
|
SDL_UnlockMutex(mutex);
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/* If this sleep isn't done, then threads may starve */
|
|
|
|
SDL_Delay(10);
|
|
|
|
}
|
2016-01-03 04:50:50 -07:00
|
|
|
if (SDL_ThreadID() == mainthread && SDL_AtomicGet(&doterminate)) {
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: raising SIGTERM\n", SDL_ThreadID());
|
2022-12-01 14:07:03 -07:00
|
|
|
(void)raise(SIGTERM);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Thread %lu: exiting!\n", SDL_ThreadID());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-03-30 12:26:31 -06:00
|
|
|
#ifndef _WIN32
|
2023-04-12 03:07:28 -06:00
|
|
|
static Uint32 hit_timeout(Uint32 interval, void *param) {
|
2023-03-16 09:56:16 -06:00
|
|
|
SDL_Log("Hit timeout! Sending SIGINT!");
|
|
|
|
kill(0, SIGINT);
|
2022-11-27 09:38:43 -07:00
|
|
|
return 0;
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
2023-03-16 09:56:16 -06:00
|
|
|
#endif
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i;
|
2023-03-30 12:26:31 -06:00
|
|
|
#ifndef _WIN32
|
2023-03-16 09:56:16 -06:00
|
|
|
int timeout = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, 0);
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!state) {
|
2023-03-16 09:56:16 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2015-11-25 13:39:28 -07:00
|
|
|
/* Enable standard application logging */
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
2023-03-16 09:56:16 -06:00
|
|
|
/* Parse commandline */
|
|
|
|
for (i = 1; i < argc;) {
|
|
|
|
int consumed;
|
|
|
|
|
|
|
|
consumed = SDLTest_CommonArg(state, i);
|
|
|
|
if (!consumed) {
|
|
|
|
if (SDL_strcmp(argv[i], "--nbthreads") == 0) {
|
|
|
|
if (argv[i + 1]) {
|
|
|
|
char *endptr;
|
|
|
|
nb_threads = SDL_strtol(argv[i + 1], &endptr, 0);
|
|
|
|
if (endptr != argv[i + 1] && *endptr == '\0' && nb_threads > 0) {
|
|
|
|
consumed = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (SDL_strcmp(argv[i], "--worktime") == 0) {
|
|
|
|
if (argv[i + 1]) {
|
|
|
|
char *endptr;
|
|
|
|
nb_threads = SDL_strtol(argv[i + 1], &endptr, 0);
|
|
|
|
if (endptr != argv[i + 1] && *endptr == '\0' && nb_threads > 0) {
|
|
|
|
consumed = 2;
|
|
|
|
}
|
|
|
|
}
|
2023-03-30 12:26:31 -06:00
|
|
|
#ifndef _WIN32
|
2023-03-16 09:56:16 -06:00
|
|
|
} else if (SDL_strcmp(argv[i], "--timeout") == 0) {
|
|
|
|
if (argv[i + 1]) {
|
|
|
|
char *endptr;
|
|
|
|
timeout = SDL_strtol(argv[i + 1], &endptr, 0);
|
|
|
|
if (endptr != argv[i + 1] && *endptr == '\0' && timeout > 0) {
|
|
|
|
consumed = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (consumed <= 0) {
|
|
|
|
static const char *options[] = {
|
|
|
|
"[--nbthreads NB]",
|
|
|
|
"[--worktime ms]",
|
2023-03-30 12:26:31 -06:00
|
|
|
#ifndef _WIN32
|
2023-03-16 09:56:16 -06:00
|
|
|
"[--timeout ms]",
|
|
|
|
#endif
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
SDLTest_CommonLogUsage(state, argv[0], options);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
i += consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
threads = SDL_malloc(nb_threads * sizeof(SDL_Thread*));
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Load the SDL library */
|
|
|
|
if (SDL_Init(0) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "%s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
2022-12-01 14:07:03 -07:00
|
|
|
(void)atexit(SDL_Quit_Wrapper);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2016-01-03 04:50:50 -07:00
|
|
|
SDL_AtomicSet(&doterminate, 0);
|
|
|
|
|
2022-12-01 14:07:03 -07:00
|
|
|
mutex = SDL_CreateMutex();
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!mutex) {
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create mutex: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
mainthread = SDL_ThreadID();
|
|
|
|
SDL_Log("Main thread: %lu\n", mainthread);
|
2022-12-01 14:07:03 -07:00
|
|
|
(void)atexit(printid);
|
2023-03-16 09:56:16 -06:00
|
|
|
for (i = 0; i < nb_threads; ++i) {
|
2015-06-21 09:33:46 -06:00
|
|
|
char name[64];
|
2023-03-09 16:10:00 -07:00
|
|
|
(void)SDL_snprintf(name, sizeof(name), "Worker%d", i);
|
2023-03-16 16:47:35 -06:00
|
|
|
threads[i] = SDL_CreateThread(Run, name, NULL);
|
2022-12-01 14:07:03 -07:00
|
|
|
if (threads[i] == NULL) {
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create thread!\n");
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
2023-03-16 09:56:16 -06:00
|
|
|
|
2023-03-30 12:26:31 -06:00
|
|
|
#ifndef _WIN32
|
2023-03-16 09:56:16 -06:00
|
|
|
if (timeout) {
|
|
|
|
SDL_AddTimer(timeout, hit_timeout, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-12-01 14:07:03 -07:00
|
|
|
(void)signal(SIGINT, terminate);
|
2023-03-16 16:47:35 -06:00
|
|
|
Run(NULL);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
return 0; /* Never reached */
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|