commit | 174cb7f9f183ed9343433cd345f8548ba492ab1e | [log] [tgz] |
---|---|---|
author | Christopher Friedt <chrisfriedt@gmail.com> | Tue Oct 26 13:57:37 2021 -0400 |
committer | Anas Nashif <anas.nashif@intel.com> | Mon Nov 15 09:59:01 2021 -0500 |
tree | 1ffddbfbe4f74de2b6a9b101d105fc3c45889ed7 | |
parent | 0b400d86c0eaf6f221b54e5076b805fdcc925ca3 [diff] |
kernel: atomics: support for 64-bit atomic operations With this change, `atomic_t` is 32-bit for 32-bit architectures and 64-bit for 64-bit architectures. More specifically, `sizeof(atomic_t) == sizeof(long)`. Fixes #39530 Signed-off-by: Christopher Friedt <chrisfriedt@gmail.com>