Ich habe also gelesen http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html und stieß auf dies:
type __sync_and_and_fetch (type *ptr, type value, ...)
type __sync_xor_and_fetch (type *ptr, type value, ...)
type __sync_nand_and_fetch (type *ptr, type value, ...)
These builtins perform the operation suggested by the name, and return the new value. That is,
{ *ptr op= value; return *ptr; }
{ *ptr = ~*ptr & value; return *ptr; } // nand
Ist dieser Code wörtlich? oder ist es nur zu erklären, was gcc tut atomar mit C-ähnliche Syntax? Und wenn dies die direkte Übersetzung ist, kann jemand erklären, wie es atomar ist?