mirror of
https://github.com/mpv-player/mpv
synced 2024-12-30 19:22:11 +00:00
ff322864f2
Adds support for the meson build system as well as a bit of documentation. Compatibility with the existing waf build is maintained.
7 lines
145 B
C
7 lines
145 B
C
#include <pthread.h>
|
|
#include <pthread_np.h>
|
|
int main(int argc, char **argv) {
|
|
pthread_set_name_np(pthread_self(), "ducks");
|
|
return 0;
|
|
}
|