hal_hwspinlock.h 200 B

123456789
  1. #ifndef __HW_SPIN_LOCK__
  2. #define __HW_SPIN_LOCK__
  3. void hal_hwspinlock_init(void);
  4. void hal_hwspinlock_put(int num);
  5. void hal_hwspinlock_get(int num);
  6. int hal_hwspinlock_check_taken(int num);
  7. #endif