[PATCH 2/4] Add atomic operations similar to those provided by C11.

Torvald Riegel triegel@redhat.com
Wed Oct 29 22:15:00 GMT 2014


On Wed, 2014-10-29 at 22:50 +0100, Torvald Riegel wrote:
> This patch adds atomic operations similar to C11.
> 
> The function naming is essentially the C11 names, but with the memory
> order argument removed and added as a suffix.  For example, C11's
>   atomic_store_explicit(&foo, 23, memory_order_release)
> becomes
>   atomic_store_relaxed (&foo, 23);

Typo, sorry.  The latter should in fact be
  atomic_store_release (&foo, 23);



More information about the Libc-alpha mailing list