Add comments to procedure groups

This commit is contained in:
gingerBill
2021-10-13 23:39:17 +01:00
parent fc3b0dcc80
commit 3337d38651
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ mutex_unlock :: proc(m: ^Mutex) {
_mutex_unlock(m)
}
// mutex_lock tries to lock m, will return true on success, and false on failure
// mutex_try_lock tries to lock m, will return true on success, and false on failure
mutex_try_lock :: proc(m: ^Mutex) -> bool {
return _mutex_try_lock(m)
}