mirror of git://sourceware.org/git/glibc.git
nptl: add missing pthread-offsets.h
All architectures using their own definition of struct __pthread_rwlock_arch_t need to provide their own pthread-offsets.h.
This commit is contained in:
parent
1433e270a1
commit
4970c9e0b5
|
@ -0,0 +1,3 @@
|
|||
#define __PTHREAD_MUTEX_KIND_OFFSET 16
|
||||
|
||||
#define __PTHREAD_RWLOCK_FLAGS_OFFSET 48
|
|
@ -0,0 +1,3 @@
|
|||
#define __PTHREAD_MUTEX_KIND_OFFSET 16
|
||||
|
||||
#define __PTHREAD_RWLOCK_FLAGS_OFFSET 48
|
|
@ -0,0 +1,3 @@
|
|||
#define __PTHREAD_MUTEX_KIND_OFFSET 16
|
||||
|
||||
#define __PTHREAD_RWLOCK_FLAGS_OFFSET 48
|
|
@ -0,0 +1,3 @@
|
|||
#define __PTHREAD_MUTEX_KIND_OFFSET 16
|
||||
|
||||
#define __PTHREAD_RWLOCK_FLAGS_OFFSET 48
|
|
@ -0,0 +1,13 @@
|
|||
#include <bits/wordsize.h>
|
||||
|
||||
#if __WORDSIZE == 64
|
||||
# define __PTHREAD_MUTEX_KIND_OFFSET 16
|
||||
#else
|
||||
# define __PTHREAD_MUTEX_KIND_OFFSET 12
|
||||
#endif
|
||||
|
||||
#if __WORDSIZE == 64
|
||||
# define __PTHREAD_RWLOCK_FLAGS_OFFSET 48
|
||||
#else
|
||||
# define __PTHREAD_RWLOCK_FLAGS_OFFSET 27
|
||||
#endif
|
Loading…
Reference in New Issue