diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-05-11 10:46:03 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-05-11 10:46:03 -0300 |
commit | 0a19a9189678e8719c8423648417b0f44a83fd2c (patch) | |
tree | 6e0c2e91780d74c0d60091aabf97a528cd329365 /sysdeps/arm | |
parent | d53b8652880ba42913f66e7eee0567ce4cfe7791 (diff) | |
download | glibc-0a19a9189678e8719c8423648417b0f44a83fd2c.zip glibc-0a19a9189678e8719c8423648417b0f44a83fd2c.tar.gz glibc-0a19a9189678e8719c8423648417b0f44a83fd2c.tar.bz2 |
Remove wrong definitions from pthread header refactor
This patch removes wrong struct definition from eab380d (Move shared
pthread definitions to common headers) on ARM and hppa.
Checked on arm-linux-gnueabihf.
* sysdeps/arm/nptl/bits/pthreadtypes-arch.h
(__pthread_rwlock_arch_t): Remove __data definition.
* sysdeps/hppa/nptl/bits/pthreadtypes-arch.h
(__pthread_rwlock_arch_t): Likewise.
Diffstat (limited to 'sysdeps/arm')
-rw-r--r-- | sysdeps/arm/nptl/bits/pthreadtypes-arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/arm/nptl/bits/pthreadtypes-arch.h b/sysdeps/arm/nptl/bits/pthreadtypes-arch.h index 8333acb..3f9eca4 100644 --- a/sysdeps/arm/nptl/bits/pthreadtypes-arch.h +++ b/sysdeps/arm/nptl/bits/pthreadtypes-arch.h @@ -62,7 +62,7 @@ struct __pthread_rwlock_arch_t unsigned char __pad2; #endif int __cur_writer; -} __data; +}; #define __PTHREAD_RWLOCK_ELISION_EXTRA 0 |