valkey
valkey copied to clipboard
Move to C11 and adopt _Atomic, static_asserts, and thread_local
As per https://github.com/valkey-io/valkey/commit/445a4b669a3a7232a18bf23340c5f7d580aa92c7, we implemented custom logic to compile with C11 when atomics were available, and C99 when they were not available. However, with the EoL of CentOS 7, we believe that all default compilers should be able to compile with C99. This gives us access to three pieces of functionality we use:
- Static asserts, we have some custom code defined to support it but now we can standardize on the C11 functionality.
- native thread_local support. We can avoid
_thread. - Native atomics support, so we can remove our custom logic supporting atomics.
This change should target Valkey 8. We will continue to use the old gcc version on Valkey 7.2.
@madolson Are we sticking to the default memory ordering for _Atomic operations (ex: incr, decr, ....) for C11 which is sequentially consistent memory ordering memory_order_seq_cst, or are we going with the one used for the custom logic which is relaxed (memory_order_relaxed).
See: https://en.cppreference.com/w/c/atomic/memory_order
Historically we have predominantly used atomics for counters in other threads, which are fine with memory_order_relaxed and see better performance.
@madolson please take a look at the PR to see if it's good, so I can finish up the remaining parts