mirror of https://github.com/mpv-player/mpv
7 lines
140 B
C
7 lines
140 B
C
|
#define _GNU_SOURCE
|
||
|
#include <pthread.h>
|
||
|
int main(int argc, char **argv) {
|
||
|
pthread_setname_np(pthread_self(), "ducks");
|
||
|
return 0;
|
||
|
}
|