musl/arch
Rich Felker de7e99c585 make pointers used in robust list volatile
when manipulating the robust list, the order of stores matters,
because the code may be asynchronously interrupted by a fatal signal
and the kernel will then access the robust list in what is essentially
an async-signal context.

previously, aliasing considerations made it seem unlikely that a
compiler could reorder the stores, but proving that they could not be
reordered incorrectly would have been extremely difficult. instead
I've opted to make all the pointers used as part of the robust list,
including those in the robust list head and in the individual mutexes,
volatile.

in addition, the format of the robust list has been changed to point
back to the head at the end, rather than ending with a null pointer.
this is to match the documented kernel robust list ABI. the null
pointer, which was previously used, only worked because faults during
access terminate the robust list processing.
2014-08-17 00:46:26 -04:00
..
arm make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
i386 make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
microblaze make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
mips make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
or1k make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
powerpc make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
sh make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
x32 make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00
x86_64 make pointers used in robust list volatile 2014-08-17 00:46:26 -04:00