Correcting header guards across the kernel
This commit is contained in:
parent
8d126a6dfd
commit
4ed3650089
12 changed files with 50 additions and 59 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef KERNEL_Spinlock_H
|
||||
#define KERNEL_Spinlock_H
|
||||
#ifndef KERNEL_SPINLOCK_H
|
||||
#define KERNEL_SPINLOCK_H
|
||||
|
||||
#include <proc.h>
|
||||
#include <stdbool.h>
|
||||
|
|
@ -19,4 +19,4 @@ void spin_unlock(spinlock_t *l);
|
|||
bool spin_is_holding(spinlock_t *l);
|
||||
void spin_lock(spinlock_t *l);
|
||||
|
||||
#endif
|
||||
#endif // KERNEL_SPINLOCK_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue