summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorjca <jca@openbsd.org>2017-11-04 22:53:57 +0000
committerjca <jca@openbsd.org>2017-11-04 22:53:57 +0000
commita318b99d5fc4aa6b07d4c22670471e27e4e35499 (patch)
treecb055079af287246bfbb51b4412514a1c6d3de6f /include
parentDon't keep blindly chugging along when receiving an unexpected imsg, (diff)
downloadwireguard-openbsd-a318b99d5fc4aa6b07d4c22670471e27e4e35499.tar.xz
wireguard-openbsd-a318b99d5fc4aa6b07d4c22670471e27e4e35499.zip
Revert recent changes to unbreak ports/net/samba
While it is not clear (to me) why that ports ends up with corrupted shared libs, reverting those changes fixes the issue and should allow us to close p2k17 more smoothly. Discussed with a bunch, ok ajacoutot@ guenther@
Diffstat (limited to 'include')
-rw-r--r--include/pthread.h35
1 files changed, 3 insertions, 32 deletions
diff --git a/include/pthread.h b/include/pthread.h
index 937fef369bd..ecbb76a5f22 100644
--- a/include/pthread.h
+++ b/include/pthread.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pthread.h,v 1.2 2017/10/28 21:23:14 guenther Exp $ */
+/* $OpenBSD: pthread.h,v 1.3 2017/11/04 22:53:57 jca Exp $ */
/*
* Copyright (c) 1993, 1994 by Chris Provenzano, proven@mit.edu
@@ -180,40 +180,9 @@ enum pthread_mutextype {
#define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_STRICT_NP
/*
- * On-stack structure for the pthread_cleanup_{push,pop} macros
- * The actual values are xor'ed with random cookies.
- */
-struct __thread_cleanup {
- __uintptr_t __tc_magic;
- __uintptr_t __tc_next;
- __uintptr_t __tc_fn;
- __uintptr_t __tc_arg;
-};
-
-/*
- * These macro must be used in pairs in the same scope, such that
- * pthread_cleanup_push() can start a block declaring a variable and
- * pthread_cleanup_pop() closes that same block. Any other usage
- * violates the requirements of the POSIX and Single UNIX standards.
- */
-#define pthread_cleanup_push(cb, arg) \
- { /* MATCHED BY CLOSE BRACKET IN pthread_cleanup_pop() */ \
- struct __thread_cleanup __tc; \
- _thread_cleanup_push(cb, arg, &__tc);
-
-#define pthread_cleanup_pop(execute) \
- _thread_cleanup_pop(execute, &__tc); \
- } /* MATCHED BY OPEN BRACKET IN pthread_cleanup_push() */
-
-
-
-/*
* Thread function prototype definitions:
*/
__BEGIN_DECLS
-void _thread_cleanup_pop(int _execute, struct __thread_cleanup *_tc);
-void _thread_cleanup_push(void (*_fn)(void *), void *_arg,
- struct __thread_cleanup *_tc);
int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));
int pthread_attr_destroy(pthread_attr_t *);
int pthread_attr_getstack(const pthread_attr_t *,
@@ -228,6 +197,8 @@ int pthread_attr_setstack(pthread_attr_t *, void *, size_t);
int pthread_attr_setstackaddr(pthread_attr_t *, void *);
int pthread_attr_setguardsize(pthread_attr_t *, size_t);
int pthread_attr_setdetachstate(pthread_attr_t *, int);
+void pthread_cleanup_pop(int);
+void pthread_cleanup_push(void (*) (void *), void *routine_arg);
int pthread_condattr_destroy(pthread_condattr_t *);
int pthread_condattr_init(pthread_condattr_t *);