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:
Roland McGrath 2002-12-05 20:56:25 +00:00
parent 440d8bc2cd
commit 9702f15190
1 changed files with 1 additions and 1 deletions

View File

@ -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. */