From 792d9d0376843cb4a04aeb79e49ede19d9579dde Mon Sep 17 00:00:00 2001 From: David Xu Date: Sat, 8 Jan 2005 11:07:13 +0000 Subject: [PATCH] Fix typo, function name pthread_rwlock_timedrwlock should be pthread_rwlock_timedwrlock. --- include/pthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pthread.h b/include/pthread.h index 36a5eff331f3..8e4dcfd58d1a 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -264,7 +264,7 @@ int pthread_rwlock_init(pthread_rwlock_t *, int pthread_rwlock_rdlock(pthread_rwlock_t *); int pthread_rwlock_timedrdlock(pthread_rwlock_t *, const struct timespec *); -int pthread_rwlock_timedrwlock(pthread_rwlock_t *, +int pthread_rwlock_timedwrlock(pthread_rwlock_t *, const struct timespec *); int pthread_rwlock_tryrdlock(pthread_rwlock_t *); int pthread_rwlock_trywrlock(pthread_rwlock_t *);