diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | sysdeps/generic/pthread.h | 2 | ||||
-rw-r--r-- | sysdeps/pthread/bits/pthreadtypes.h | 2 | ||||
-rw-r--r-- | sysdeps/pthread/bits/types/struct___pthread_rwlockattr.h (renamed from sysdeps/pthread/bits/rwlock-attr.h) | 6 |
4 files changed, 6 insertions, 6 deletions
@@ -161,7 +161,7 @@ headers := \ bits/types/struct___pthread_once.h \ bits/types/struct___pthread_mutexattr.h \ bits/rwlock.h \ - bits/rwlock-attr.h \ + bits/types/struct___pthread_rwlockattr.h \ bits/semaphore.h distribute := diff --git a/sysdeps/generic/pthread.h b/sysdeps/generic/pthread.h index d123bd2..56e2c43 100644 --- a/sysdeps/generic/pthread.h +++ b/sysdeps/generic/pthread.h @@ -591,7 +591,7 @@ pthread_spin_unlock (pthread_spinlock_t *__lock) #if defined __USE_UNIX98 || defined __USE_XOPEN2K -#include <bits/rwlock-attr.h> +#include <bits/types/struct___pthread_rwlockattr.h> /* Initialize rwlock attribute object in *ATTR to the default values. */ diff --git a/sysdeps/pthread/bits/pthreadtypes.h b/sysdeps/pthread/bits/pthreadtypes.h index 55a5659..c74face 100644 --- a/sysdeps/pthread/bits/pthreadtypes.h +++ b/sysdeps/pthread/bits/pthreadtypes.h @@ -104,7 +104,7 @@ typedef __pthread_spinlock_t pthread_spinlock_t; #if defined __USE_UNIX98 || defined __USE_XOPEN2K -#include <bits/rwlock-attr.h> +#include <bits/types/struct___pthread_rwlockattr.h> typedef struct __pthread_rwlockattr pthread_rwlockattr_t; #include <bits/rwlock.h> diff --git a/sysdeps/pthread/bits/rwlock-attr.h b/sysdeps/pthread/bits/types/struct___pthread_rwlockattr.h index a8c33b9..7df532e 100644 --- a/sysdeps/pthread/bits/rwlock-attr.h +++ b/sysdeps/pthread/bits/types/struct___pthread_rwlockattr.h @@ -16,8 +16,8 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _BITS_RWLOCK_ATTR_H -#define _BITS_RWLOCK_ATTR_H 1 +#ifndef _BITS_TYPES_STRUCT___PTHREAD_RWLOCKATTR_H +#define _BITS_TYPES_STRUCT___PTHREAD_RWLOCKATTR_H 1 enum __pthread_process_shared; @@ -28,4 +28,4 @@ struct __pthread_rwlockattr enum __pthread_process_shared __pshared; }; -#endif /* bits/rwlock-attr.h */ +#endif /* bits/types/struct___pthread_rwlockattr.h */ |