diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-12 01:09:21 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-12 01:09:21 +0200 |
commit | 1cf67399a9bfa13ab79974e345eb87fa70753da1 (patch) | |
tree | 59ca8415b3994c393aac55b4357491ba60625db1 /kern/lock.c | |
parent | 62dcee5f04552bf013454f219d37454895e7d32d (diff) | |
download | gnumach-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.c | 2 |
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); |