summaryrefslogtreecommitdiff
path: root/kern/clock.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-04-21 10:42:11 +0200
committerRichard Braun <rbraun@sceen.net>2018-04-21 10:49:07 +0200
commitec4ddf8b95585cc3e340dd06df109f83a23b2d77 (patch)
treed70e9c7a52c6c5f60e8d971b0eeb4b275d80bb33 /kern/clock.c
parent89ebd57e0bb3a63f2f794ce41dd4c831b4aeb35c (diff)
Fix atomic operations argument types
In preparation of the rework of atomic operations, all atomic function calls are fixed to use fully supported, compatible types. This means that atomic operations ar erestricted to 32-bit and 64-bit, and that value types must be strictly compatible with pointer types.
Diffstat (limited to 'kern/clock.c')
-rw-r--r--kern/clock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/clock.c b/kern/clock.c
index 27fb9a2..5c48bb9 100644
--- a/kern/clock.c
+++ b/kern/clock.c
@@ -72,7 +72,7 @@ void clock_tick_intr(void)
if (cpu_id() == 0) {
#ifdef ATOMIC_HAVE_64B_OPS
- atomic_add(&clock_global_time.ticks, 1, ATOMIC_RELAXED);
+ atomic_add(&clock_global_time.ticks, 1ULL, ATOMIC_RELAXED);
#else /* ATOMIC_HAVE_64B_OPS */