1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-01 05:02:03 +03: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:
Roland McGrath
2002-12-05 20:56:25 +00:00
parent 440d8bc2cd
commit 9702f15190

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