forked from pepper-org/pepperOS
End the _t nonsense
This commit is contained in:
@@ -10,13 +10,13 @@
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct spinlock_t
|
||||
struct spinlock
|
||||
{
|
||||
bool locked;
|
||||
uint64_t rflags;
|
||||
};
|
||||
|
||||
void spinlock_acquire(struct spinlock_t* lock);
|
||||
void spinlock_release(struct spinlock_t* lock);
|
||||
void spinlock_acquire(struct spinlock* lock);
|
||||
void spinlock_release(struct spinlock* lock);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user