Skip to content

Commit

Permalink
Use explicit atomic loads and stores in the internal spinlock impleme…
Browse files Browse the repository at this point in the history
…ntation. Fixes #190.
  • Loading branch information
insertinterestingnamehere committed Dec 5, 2023
1 parent d6ce514 commit 6ba08c4
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions include/qt_atomics.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,17 @@
# define QTHREAD_FASTLOCK_SETUP() do { } while (0)
# define QTHREAD_FASTLOCK_ATTRVAR
typedef struct qt_spin_exclusive_s { /* added to allow fast critical section ordering */
aligned_t enter; /* and not call pthreads spin_lock -- hard to debug */
aligned_t exit; /* near the lock under gdb -- 4/1/11 akp */
aligned_t _Atomic enter; /* and not call pthreads spin_lock -- hard to debug */
aligned_t _Atomic exit; /* near the lock under gdb -- 4/1/11 akp */
} qt_spin_exclusive_t;
void qt_spin_exclusive_lock(qt_spin_exclusive_t *);
void qt_spin_exclusive_unlock(qt_spin_exclusive_t *);
# define QTHREAD_FASTLOCK_INIT(x) { (x).enter = 0; (x).exit = 0; }
# define QTHREAD_FASTLOCK_INIT_PTR(x) { (x)->enter = 0; (x)->exit = 0; }
# define QTHREAD_FASTLOCK_LOCK(x) { aligned_t val = qthread_incr(&(x)->enter, 1); \
while (val != (x)->exit) SPINLOCK_BODY(); \
THREAD_FENCE_MEM_ACQUIRE; /* spin waiting for my turn */ }
# define QTHREAD_FASTLOCK_UNLOCK(x) do { COMPILER_FENCE; \
THREAD_FENCE_MEM_RELEASE; \
(x)->exit++; /* allow next guy's turn */ \
} while (0)
# define QTHREAD_FASTLOCK_INIT(x) { atomic_store_explicit(&(x).enter, 0u, memory_order_relaxed); atomic_store_explicit(&(x).exit, 0u, memory_order_relaxed); }
# define QTHREAD_FASTLOCK_INIT_PTR(x) { atomic_store_explicit(&(x)->enter, 0u, memory_order_relaxed); atomic_store_explicit(&(x)->exit, 0u, memory_order_relaxed); }
# define QTHREAD_FASTLOCK_LOCK(x) { aligned_t val = atomic_fetch_add_explicit(&(x)->enter, 1u, memory_order_relaxed); \
while (val != atomic_load_explicit(&(x)->exit, memory_order_relaxed)) SPINLOCK_BODY(); \
atomic_thread_fence(memory_order_acquire); /* spin waiting for turn */ }
# define QTHREAD_FASTLOCK_UNLOCK(x) do { atomic_fetch_add_explicit(&(x)->exit, 1u, memory_order_release); /* notify next waiting thread */} while (0)
# define QTHREAD_FASTLOCK_DESTROY(x)
# define QTHREAD_FASTLOCK_DESTROY_PTR(x)
# define QTHREAD_FASTLOCK_TYPE qt_spin_exclusive_t
Expand Down

0 comments on commit 6ba08c4

Please sign in to comment.