diff options
author | 2016-04-15 17:54:17 +0000 | |
---|---|---|
committer | 2016-04-15 17:54:17 +0000 | |
commit | 7446b51cb8845fe4e5a4767f1a4e046d29890fef (patch) | |
tree | e41f368df80f9499a12ad2204c4620b40c090cf6 /lib/librthread/pthread.h | |
parent | prefer warn[x](3) over fprintf(3) where appropriate (diff) | |
download | wireguard-openbsd-7446b51cb8845fe4e5a4767f1a4e046d29890fef.tar.xz wireguard-openbsd-7446b51cb8845fe4e5a4767f1a4e046d29890fef.zip |
make pthread_barrier_wait behave more like it does on other platforms.
from Kari Tristan Helgason
Diffstat (limited to 'lib/librthread/pthread.h')
-rw-r--r-- | lib/librthread/pthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librthread/pthread.h b/lib/librthread/pthread.h index 539f4ad82aa..2510c34789a 100644 --- a/lib/librthread/pthread.h +++ b/lib/librthread/pthread.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread.h,v 1.1 2016/04/02 19:56:53 guenther Exp $ */ +/* $OpenBSD: pthread.h,v 1.2 2016/04/15 17:54:17 tedu Exp $ */ /* * Copyright (c) 2016 Philip Guenther <guenther@openbsd.org> * @@ -51,7 +51,7 @@ PROTO_STD_DEPRECATED(pthread_cleanup_push); PROTO_NORMAL(pthread_cond_broadcast); PROTO_NORMAL(pthread_cond_destroy); PROTO_NORMAL(pthread_cond_init); -PROTO_STD_DEPRECATED(pthread_cond_signal); +PROTO_NORMAL(pthread_cond_signal); PROTO_STD_DEPRECATED(pthread_cond_timedwait); PROTO_NORMAL(pthread_cond_wait); PROTO_STD_DEPRECATED(pthread_condattr_destroy); |