Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in spinlock

Linux kernel dump: How to get the owner of a spinlock

Performance pthread_spinlock_t is 2x better than my own implementation with lock free std::atomic_flag, around std::list

Why is acquire semantics only for reads, not writes? How can an LL/SC acquire CAS take a lock without the store reordering with the critical section?

Does acquiring a spinlock require compare-and-swap or is swap enough?

concurrency atomic spinlock

Helgrind and atomic_flag

c++ valgrind atomic spinlock

Fastest inline-assembly spinlock

Spinlock implementation reasoning

c++11 boost spinlock

Implementing a SpinLock in a HLSL DirectCompute shader

When to use MCS lock

GLSL per-pixel spinlock using imageAtomicCompSwap

opengl glsl mutex spinlock

Why linux disables kernel preemption after the kernel code holds a spinlock?

Locks around memory manipulation via inline assembly

c assembly x86 locking spinlock

spin_lock on non-preemtive linux kernels

Avoiding sleep while holding a spinlock

Are the memory barriers correct for this lock?

c++ locking atomic spinlock

In the linux kernel, will a call to kfree ever sleep?

Is a spinlock lock free?

How to migrate from OSSpinLock to os_unfair_lock()?

Does Mac OS X have pthread_spinlock_t type?

macos pthreads spinlock

Is memory barrier or atomic operation required in a busy-wait loop?