From 55bc96d4190e40704fb5e447cef9597b08b8f088 Mon Sep 17 00:00:00 2001 From: Robert Morris Date: Tue, 23 Jul 2019 11:14:10 -0400 Subject: a few core -> CPU get rid of PDF generating support --- kernel/spinlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/spinlock.c') diff --git a/kernel/spinlock.c b/kernel/spinlock.c index 83512bb..563532e 100644 --- a/kernel/spinlock.c +++ b/kernel/spinlock.c @@ -52,7 +52,7 @@ release(struct spinlock *lk) // Tell the C compiler and the CPU to not move loads or stores // past this point, to ensure that all the stores in the critical - // section are visible to other cores before the lock is released. + // section are visible to other CPUs before the lock is released. // On RISC-V, this turns into a fence instruction. __sync_synchronize(); -- cgit v1.2.3