diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-11-26 14:31:14 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-11-27 21:03:36 -0500 |
commit | f05d65e5cf4b376a6bf1eeed17356f8e7767b389 (patch) | |
tree | 120367d126dfc7601dcb97abc699ffa4463be641 /build/has/pthread-set-name-np.c | |
parent | aecdabb625841052a68fd3b5510c56b138693c9a (diff) | |
download | bfs-f05d65e5cf4b376a6bf1eeed17356f8e7767b389.tar.xz |
thread: New thread_setname() function
Diffstat (limited to 'build/has/pthread-set-name-np.c')
-rw-r--r-- | build/has/pthread-set-name-np.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/has/pthread-set-name-np.c b/build/has/pthread-set-name-np.c new file mode 100644 index 0000000..324aab9 --- /dev/null +++ b/build/has/pthread-set-name-np.c @@ -0,0 +1,10 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +#include <pthread.h> +#include <pthread_np.h> + +int main(void) { + pthread_set_name_np(pthread_self(), "name"); + return 0; +} |