aboutsummaryrefslogtreecommitdiff
path: root/kern/lock.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-12 01:09:21 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-12 01:09:21 +0200
commit1cf67399a9bfa13ab79974e345eb87fa70753da1 (patch)
tree59ca8415b3994c393aac55b4357491ba60625db1 /kern/lock.c
parent62dcee5f04552bf013454f219d37454895e7d32d (diff)
downloadgnumach-1cf67399a9bfa13ab79974e345eb87fa70753da1.tar.gz
gnumach-1cf67399a9bfa13ab79974e345eb87fa70753da1.tar.bz2
gnumach-1cf67399a9bfa13ab79974e345eb87fa70753da1.zip
lock: Rename simple_unlock version with information to _simple_unlock
For coherency with the rest of the implementations
Diffstat (limited to 'kern/lock.c')
-rw-r--r--kern/lock.c2
1 files changed, 1 insertions, 1 deletions
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);