From 5753553213df8f9de851adb68377db43faecb91f Mon Sep 17 00:00:00 2001 From: Robert Morris Date: Tue, 11 Jun 2019 09:57:14 -0400 Subject: separate source into kernel/ user/ mkfs/ --- spinlock.h | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 spinlock.h (limited to 'spinlock.h') diff --git a/spinlock.h b/spinlock.h deleted file mode 100644 index 4392820..0000000 --- a/spinlock.h +++ /dev/null @@ -1,9 +0,0 @@ -// Mutual exclusion lock. -struct spinlock { - uint locked; // Is the lock held? - - // For debugging: - char *name; // Name of lock. - struct cpu *cpu; // The cpu holding the lock. -}; - -- cgit v1.2.3