mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
* init.c (__pthread_initialize_minimal): Initialize word to appease
valgrind. 2007-10-15 Jakub Jelinek <jakub@redhat.com> * init.c (__pthread_initialize_minimal): Initialize word to appease valgrind.
This commit is contained in:
parent
2884dad43c
commit
e807818b5d
@ -1,3 +1,8 @@
|
||||
2007-10-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* init.c (__pthread_initialize_minimal): Initialize word to appease
|
||||
valgrind.
|
||||
|
||||
2007-10-10 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/pthread/bits/libc-lock.h (__libc_rwlock_init): Inside of
|
||||
|
@ -284,7 +284,7 @@ __pthread_initialize_minimal_internal (void)
|
||||
/* Private futexes are always used (at least internally) so that
|
||||
doing the test once this early is beneficial. */
|
||||
{
|
||||
int word;
|
||||
int word = 0;
|
||||
word = INTERNAL_SYSCALL (futex, err, 3, &word,
|
||||
FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1);
|
||||
if (!INTERNAL_SYSCALL_ERROR_P (word, err))
|
||||
|
Loading…
Reference in New Issue
Block a user