diff options
author | 1999-03-10 10:00:47 +0000 | |
---|---|---|
committer | 1999-03-10 10:00:47 +0000 | |
commit | 0577948c8c7b3e137970b0c970c127b2e89770ca (patch) | |
tree | c1d61da8ec217a77420f65c3a543bf91c32a73f8 /lib/libpthread/include/pthread.h | |
parent | no need to save signal state in setjmp/longjmp - it will always be the same, so we may as well save a few syscalls (diff) | |
download | wireguard-openbsd-0577948c8c7b3e137970b0c970c127b2e89770ca.tar.xz wireguard-openbsd-0577948c8c7b3e137970b0c970c127b2e89770ca.zip |
missing const (freebsd)
Diffstat (limited to 'lib/libpthread/include/pthread.h')
-rw-r--r-- | lib/libpthread/include/pthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/include/pthread.h b/lib/libpthread/include/pthread.h index 0c935fabc97..1d997eb7e0b 100644 --- a/lib/libpthread/include/pthread.h +++ b/lib/libpthread/include/pthread.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: pthread.h,v 1.5 1999/01/18 00:00:31 d Exp $ + * $OpenBSD: pthread.h,v 1.6 1999/03/10 10:00:47 d Exp $ * */ #ifndef _PTHREAD_H_ @@ -208,7 +208,7 @@ void pthread_cleanup_push __P((void (*routine) (void *), void *routine_arg)); int pthread_condattr_destroy __P((pthread_condattr_t *attr)); int pthread_condattr_init __P((pthread_condattr_t *attr)); -int pthread_condattr_getpshared __P((pthread_condattr_t *attr, +int pthread_condattr_getpshared __P((const pthread_condattr_t *attr, int *pshared)); int pthread_condattr_setpshared __P((pthread_condattr_t *attr, int pshared)); |