diff options
Diffstat (limited to 'sysdeps/pthread/bits')
-rw-r--r-- | sysdeps/pthread/bits/pthreadtypes.h | 2 | ||||
-rw-r--r-- | sysdeps/pthread/bits/types/struct___pthread_cond.h (renamed from sysdeps/pthread/bits/condition.h) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/pthread/bits/pthreadtypes.h b/sysdeps/pthread/bits/pthreadtypes.h index f874219..59ab32a 100644 --- a/sysdeps/pthread/bits/pthreadtypes.h +++ b/sysdeps/pthread/bits/pthreadtypes.h @@ -94,7 +94,7 @@ typedef struct __pthread_mutex pthread_mutex_t; #include <bits/types/struct___pthread_condattr.h> typedef struct __pthread_condattr pthread_condattr_t; -#include <bits/condition.h> +#include <bits/types/struct___pthread_cond.h> typedef struct __pthread_cond pthread_cond_t; #ifdef __USE_XOPEN2K diff --git a/sysdeps/pthread/bits/condition.h b/sysdeps/pthread/bits/types/struct___pthread_cond.h index 75942e2..11c685e 100644 --- a/sysdeps/pthread/bits/condition.h +++ b/sysdeps/pthread/bits/types/struct___pthread_cond.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_CONDITION_H -#define _BITS_CONDITION_H 1 +#ifndef _BITS_TYPES_STRUCT___PTHREAD_COND_H +#define _BITS_TYPES_STRUCT___PTHREAD_COND_H 1 #include <bits/types/__pthread_spinlock_t.h> @@ -35,4 +35,4 @@ struct __pthread_cond #define __PTHREAD_COND_INITIALIZER \ { __PTHREAD_SPIN_LOCK_INITIALIZER, NULL, NULL, NULL, NULL } -#endif /* bits/condition.h */ +#endif /* bits/types/struct___pthread_cond.h */ |