DungeonCrawl
|
Exposes functions for the thread_handler. More...
Go to the source code of this file.
Functions | |
void | start_simple_thread (void(*thread_func)(void)) |
Starts a new thread with the given function. |
Exposes functions for the thread_handler.
Definition in file thread_handler.h.
void start_simple_thread | ( | void(* | thread_func )(void) | ) |
Starts a new thread with the given function.
The thread will be detached, so it will run independently.
thread_func | A simple function pointer to the function that will be executed in the thread. |
Definition at line 56 of file thread_handler.c.