From 1cf67399a9bfa13ab79974e345eb87fa70753da1 Mon Sep 17 00:00:00 2001 From: Samuel Thibault <samuel.thibault@ens-lyon.org> Date: Sat, 12 Aug 2023 01:09:21 +0200 Subject: lock: Rename simple_unlock version with information to _simple_unlock For coherency with the rest of the implementations --- kern/lock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kern/lock.c') diff --git a/kern/lock.c b/kern/lock.c index f076c328..43281147 100644 --- a/kern/lock.c +++ b/kern/lock.c @@ -204,7 +204,7 @@ boolean_t _simple_lock_try( return TRUE; } -void simple_unlock( +void _simple_unlock( simple_lock_t l) { assert(l->lock_data != 0); -- cgit v1.2.3