1 2 3 4 5 6 7 8 9
#ifndef SPINLOCK_H #define SPINLOCK_H #include <stdint.h> void lock_spin(spinlock); void lock_release(spinlock); #endif