diff options
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r-- | sysdeps/pthread/bits/pthreadtypes.h | 2 | ||||
-rw-r--r-- | sysdeps/pthread/bits/types/struct___pthread_mutex.h (renamed from sysdeps/pthread/bits/mutex.h) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/pthread/bits/pthreadtypes.h b/sysdeps/pthread/bits/pthreadtypes.h index 574ec63..fe2efc4 100644 --- a/sysdeps/pthread/bits/pthreadtypes.h +++ b/sysdeps/pthread/bits/pthreadtypes.h @@ -88,7 +88,7 @@ enum __pthread_mutex_robustness #include <bits/mutex-attr.h> typedef struct __pthread_mutexattr pthread_mutexattr_t; -#include <bits/mutex.h> +#include <bits/types/struct___pthread_mutex.h> typedef struct __pthread_mutex pthread_mutex_t; #include <bits/condition-attr.h> diff --git a/sysdeps/pthread/bits/mutex.h b/sysdeps/pthread/bits/types/struct___pthread_mutex.h index bd1ad8f..a9265c4 100644 --- a/sysdeps/pthread/bits/mutex.h +++ b/sysdeps/pthread/bits/types/struct___pthread_mutex.h @@ -18,8 +18,8 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _BITS_MUTEX_H -#define _BITS_MUTEX_H 1 +#ifndef _BITS_TYPES_STRUCT___PTHREAD_MUTEX_H +#define _BITS_TYPES_STRUCT___PTHREAD_MUTEX_H 1 #include <bits/types/__pthread_spinlock_t.h> #include <bits/mutex-attr.h> @@ -59,4 +59,4 @@ struct __pthread_mutex { __PTHREAD_SPIN_LOCK_INITIALIZER, __PTHREAD_SPIN_LOCK_INITIALIZER, 0, 0, \ __PTHREAD_RECURSIVE_MUTEXATTR, 0, 0, 0 } -#endif /* bits/mutex.h */ +#endif /* bits/types/struct___pthread_mutex.h */ |