Concurrency primitives, safe memory reclamation mechanisms and non-blocking (including lock-free) data structures designed to aid in the research, design and implementation of high performance concurrent systems developed in C99+.
The atomicity of the sequence number's increment is unnecessary, since
there should be only one writer at any given time. Fix it by changing
it for a regular increment + store.
The atomicity of the sequence number's increment is unnecessary, since there should be only one writer at any given time. Fix it by changing it for a regular increment + store.
Signed-off-by: Emilio G. Cota cota@braap.org