cpuport.h 231 B

123456789101112
  1. #ifndef CPUPORT_H__
  2. #define CPUPORT_H__
  3. typedef union {
  4. unsigned long slock;
  5. struct __arch_tickets {
  6. unsigned short owner;
  7. unsigned short next;
  8. } tickets;
  9. } rt_hw_spinlock_t;
  10. #endif /*CPUPORT_H__*/