kernel: atomic: change atomic_t to 32-bit int

This commit is contained in:
2026-04-01 18:27:31 +01:00
parent 8595f705af
commit 61050fd54b
+1 -1
View File
@@ -4,7 +4,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
typedef int64_t atomic_t; typedef int32_t atomic_t;
/* load and return the value pointed to by `v` */ /* load and return the value pointed to by `v` */
static inline atomic_t atomic_load(atomic_t *v) static inline atomic_t atomic_load(atomic_t *v)