summaryrefslogtreecommitdiff
path: root/support/xpthread_barrierattr_init.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2018-05-29 10:48:46 +0200
committerFlorian Weimer <fweimer@redhat.com>2018-05-29 15:37:00 +0200
commit0ce2fa6973810b2b99c85f446f79c505cfbf5652 (patch)
tree34769cf61e265e7dd5b8245c348152fced53b09e /support/xpthread_barrierattr_init.c
parent7f7b5d8ded77db90c1fbfeaaeb3d58b6db84da47 (diff)
downloadglibc-0ce2fa6973810b2b99c85f446f79c505cfbf5652.tar.gz
support: Add wrappers for pthread_barrierattr_t
Diffstat (limited to 'support/xpthread_barrierattr_init.c')
-rw-r--r--support/xpthread_barrierattr_init.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/support/xpthread_barrierattr_init.c b/support/xpthread_barrierattr_init.c
new file mode 100644
index 0000000000..4ee14e78f3
--- /dev/null
+++ b/support/xpthread_barrierattr_init.c
@@ -0,0 +1,26 @@
+/* pthread_barrierattr_init with error checking.
+ Copyright (C) 2018 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
+ <http://www.gnu.org/licenses/>. */
+
+#include <support/xthread.h>
+
+void
+xpthread_barrierattr_init (pthread_barrierattr_t *attr)
+{
+ xpthread_check_return ("pthread_barrierattr_init",
+ pthread_barrierattr_init (attr));
+}