From 61050fd54b57e5a368452c3663156f987ff5498a Mon Sep 17 00:00:00 2001 From: Max Wash Date: Wed, 1 Apr 2026 18:27:31 +0100 Subject: [PATCH] kernel: atomic: change atomic_t to 32-bit int --- include/kernel/atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kernel/atomic.h b/include/kernel/atomic.h index 0230c99..76e5854 100644 --- a/include/kernel/atomic.h +++ b/include/kernel/atomic.h @@ -4,7 +4,7 @@ #include #include -typedef int64_t atomic_t; +typedef int32_t atomic_t; /* load and return the value pointed to by `v` */ static inline atomic_t atomic_load(atomic_t *v)