mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
2002-12-05 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/i386/createthread.c (create_thread): Add missing & here too.
This commit is contained in:
parent
440d8bc2cd
commit
9702f15190
@ -92,7 +92,7 @@ create_thread (struct pthread *pd, STACK_VARIABLES_PARMS)
|
||||
/* Enqueue the descriptor. */
|
||||
do
|
||||
pd->nextevent = __nptl_last_event;
|
||||
while (atomic_compare_and_exchange_acq (__nptl_last_event, pd,
|
||||
while (atomic_compare_and_exchange_acq (&__nptl_last_event, pd,
|
||||
pd->nextevent) != 0);
|
||||
|
||||
/* Now call the function which signals the event. */
|
||||
|
Loading…
Reference in New Issue
Block a user