You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
344 B
11 lines
344 B
#include <ck_spinlock.h>
|
|
|
|
#define LOCK_NAME "ck_ticket"
|
|
#define LOCK_DEFINE static ck_spinlock_ticket_t CK_CC_CACHELINE lock = CK_SPINLOCK_TICKET_INITIALIZER
|
|
#define LOCK ck_spinlock_ticket_lock(&lock)
|
|
#define UNLOCK ck_spinlock_ticket_unlock(&lock)
|
|
#ifdef CK_F_SPINLOCK_TICKET_TRYLOCK
|
|
#define TRYLOCK ck_spinlock_ticket_trylock(&lock)
|
|
#endif
|
|
|