]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
support: Add xpthread_kill
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 20 Jan 2021 17:32:23 +0000 (14:32 -0300)
committerFlorian Weimer <fweimer@redhat.com>
Wed, 24 Nov 2021 09:27:51 +0000 (10:27 +0100)
Checked on x86_64-linux-gnu.

(cherry picked from commit 0280b390fbd4c55a708985829d58a639475bbffb)

support/Makefile
support/xpthread_kill.c [new file with mode: 0644]
support/xthread.h

index 4154863511bcc7ef847f12cb163617ac2fda1aa0..3d3aff5ff9cf3ca11f66d3a68986937fe46fcd5b 100644 (file)
@@ -135,6 +135,7 @@ libsupport-routines = \
   xpthread_join \
   xpthread_key_create \
   xpthread_key_delete \
+  xpthread_kill \
   xpthread_mutex_consistent \
   xpthread_mutex_destroy \
   xpthread_mutex_init \
diff --git a/support/xpthread_kill.c b/support/xpthread_kill.c
new file mode 100644 (file)
index 0000000..111a75d
--- /dev/null
@@ -0,0 +1,26 @@
+/* pthread_kill with error checking.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <signal.h>
+#include <support/xthread.h>
+
+void
+xpthread_kill (pthread_t thr, int signo)
+{
+  xpthread_check_return ("pthread_kill", pthread_kill (thr, signo));
+}
index 05f8d4a7d9e031a83abb471927f322aef379f535..cb1fc30da0e48950febc42027ddc3f9031bcfc82 100644 (file)
@@ -75,6 +75,8 @@ void xpthread_attr_setstacksize (pthread_attr_t *attr,
 void xpthread_attr_setguardsize (pthread_attr_t *attr,
                                 size_t guardsize);
 
+void xpthread_kill (pthread_t thr, int signo);
+
 /* Set the stack size in ATTR to a small value, but still large enough
    to cover most internal glibc stack usage.  */
 void support_set_small_thread_stack_size (pthread_attr_t *attr);