From f05d65e5cf4b376a6bf1eeed17356f8e7767b389 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 26 Nov 2024 14:31:14 -0500 Subject: thread: New thread_setname() function --- build/has/pthread-set-name-np.c | 10 ++++++++++ build/has/pthread-setname-np.c | 8 ++++++++ build/header.mk | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 build/has/pthread-set-name-np.c create mode 100644 build/has/pthread-setname-np.c (limited to 'build') 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 +// SPDX-License-Identifier: 0BSD + +#include +#include + +int main(void) { + pthread_set_name_np(pthread_self(), "name"); + return 0; +} diff --git a/build/has/pthread-setname-np.c b/build/has/pthread-setname-np.c new file mode 100644 index 0000000..a3b94c1 --- /dev/null +++ b/build/has/pthread-setname-np.c @@ -0,0 +1,8 @@ +// Copyright © Tavian Barnes +// SPDX-License-Identifier: 0BSD + +#include + +int main(void) { + return pthread_setname_np(pthread_self(), "name"); +} diff --git a/build/header.mk b/build/header.mk index f940e52..8b697d6 100644 --- a/build/header.mk +++ b/build/header.mk @@ -38,6 +38,8 @@ HEADERS := \ gen/has/posix-getdents.h \ gen/has/posix-spawn-addfchdir-np.h \ gen/has/posix-spawn-addfchdir.h \ + gen/has/pthread-set-name-np.h \ + gen/has/pthread-setname-np.h \ gen/has/st-acmtim.h \ gen/has/st-acmtimespec.h \ gen/has/st-birthtim.h \ -- cgit v1.2.3