xv6-riscv/kernel/spinlock.h

10 lines
120 B
C

#include "types.h"
#pragma once
// Mutual exclusion lock.
struct spinlock {
// Is the lock held?
uint8 locked;
};