1 2 3 4 5 6 7 8
#ifndef SPINLOCK_H #define SPINLOCK_H void init_spinlocks(); volatile void lock_spin(int i); void lock_release(int i); #endif