spinlock.h 173 B

1234567891011
  1. #ifndef MLIBC_SPINLOCK_H__
  2. #define MLIBC_SPINLOCK_H__
  3. #include <stdatomic.h>
  4. typedef struct _spinlock
  5. {
  6. atomic_int lock;
  7. } spinlock_t;
  8. #endif /* MLIBC_SPINLOCK_H__ */