cowtest passed

This commit is contained in:
2025-07-01 20:31:29 +08:00
parent bc8921a77f
commit bef91a3bf0
8 changed files with 161 additions and 47 deletions

View File

@@ -1,6 +1,6 @@
// Mutual exclusion lock.
struct spinlock {
uint locked; // Is the lock held?
uint64 locked; // Is the lock held?
// For debugging:
char *name; // Name of lock.