about summary refs log tree commit diff
path: root/support/xpthread_key_create.c
diff options
context:
space:
mode:
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>2020-04-27 21:40:24 +0200
committerFlorian Weimer <fweimer@redhat.com>2020-04-27 21:40:24 +0200
commita9bfa4353cd39ae2eae3c111844a32f9d3abbc19 (patch)
tree3c360a48a02fd6f975704f0a9982eb0141593932 /support/xpthread_key_create.c
parentdef674652eeac60c386d04733318b311f8a5b620 (diff)
downloadglibc-a9bfa4353cd39ae2eae3c111844a32f9d3abbc19.tar.gz
glibc-a9bfa4353cd39ae2eae3c111844a32f9d3abbc19.tar.xz
glibc-a9bfa4353cd39ae2eae3c111844a32f9d3abbc19.zip
support: Implement <support/xthread.h> key create/delete
Expose xpthread_key_create and xpthread_key_delete wrappers
for tests.
Diffstat (limited to 'support/xpthread_key_create.c')
-rw-r--r--support/xpthread_key_create.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/support/xpthread_key_create.c b/support/xpthread_key_create.c
new file mode 100644
index 0000000000..53bb61ef07
--- /dev/null
+++ b/support/xpthread_key_create.c
@@ -0,0 +1,28 @@
+/* pthread_key_create with error checking.
+   Copyright (C) 2020 Free Software Foundation, Inc.
+
+   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 <support/xthread.h>
+
+pthread_key_t
+xpthread_key_create (void (*destr_function) (void *))
+{
+  pthread_key_t key;
+
+  xpthread_check_return ("pthread_key_create",
+                         pthread_key_create (&key, destr_function));
+  return key;
+}