diff options
author | Alex Feldman <alex@cvs.openbsd.org> | 2000-01-04 22:34:25 +0000 |
---|---|---|
committer | Alex Feldman <alex@cvs.openbsd.org> | 2000-01-04 22:34:25 +0000 |
commit | f210194d90a27103d11a2d84d1e25645e839bb3e (patch) | |
tree | dc487c7808c3e3def5ec77b7f1b179415fc70ba4 /lib/libpthread/include | |
parent | 7805e697b944bc08d6858349072c7a0ea52bfd38 (diff) |
Fix incorrect `pshared' argument type for pthread_rwlockattr_setpshared.
rse@engelschall.com via FreeBSD.
Diffstat (limited to 'lib/libpthread/include')
-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 d94bbe8173f..7940c9d5b63 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.9 1999/11/25 07:01:29 d Exp $ + * $OpenBSD: pthread.h,v 1.10 2000/01/04 22:34:23 alex Exp $ * * $FreeBSD: pthread.h,v 1.13 1999/07/31 08:36:07 rse Exp $ */ @@ -269,7 +269,7 @@ int pthread_rwlockattr_init __P((pthread_rwlockattr_t *)); int pthread_rwlockattr_getpshared __P((const pthread_rwlockattr_t *, int *)); int pthread_rwlockattr_setpshared __P((pthread_rwlockattr_t *, - int *)); + int)); int pthread_rwlockattr_destroy __P((pthread_rwlockattr_t *)); pthread_t pthread_self __P((void)); int pthread_setspecific __P((pthread_key_t, const void *)); |