2007-07-27 Jakub Jelinek <jakub@redhat.com>

* sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end
	of the structure for sparc32.

2007-07-26  Aurelien Jarno  <aurelien@aurel32.net>

	* sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag.
2007-07-27  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end
	of the structure for sparc32.

2007-07-26  Aurelien Jarno  <aurelien@aurel32.net>

	* sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag.
This commit is contained in:
Jakub Jelinek 2007-07-27 22:07:39 +00:00
parent 74f2caf168
commit ef0af159c5
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2007-07-27 Jakub Jelinek <jakub@redhat.com>
* sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end
of the structure for sparc32.
2007-07-26 Aurelien Jarno <aurelien@aurel32.net>
* sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag.
2007-07-23 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: Fix

View File

@ -46,9 +46,15 @@ typedef struct
dtv_t *dtv;
void *self;
int multiple_threads;
#if __WORDSIZE == 64
int gscope_flag;
#endif
uintptr_t sysinfo;
uintptr_t stack_guard;
uintptr_t pointer_guard;
#if __WORDSIZE != 64
int gscope_flag;
#endif
} tcbhead_t;
#else /* __ASSEMBLER__ */