Tagged Questions
The spinlock tag has no wiki summary.
10
votes
8answers
5k views
Is my spin lock implementation correct and optimal?
I'm using a spin lock to protect a very small critical section. Contention happens very rarely so a spin lock is more appropriate than a regular mutex.
My current code is as follows, and assumes x86 ...
6
votes
2answers
320 views
Do spin_lock and spin_unlock hurt performance of an SMP kernel on a single-cpu machine?
On my Ubuntu machine, default kernel image which is running is built for smp (CONFIG_SMP=y). But this machine has only 1 cpu.
On uni-processor kernel, unlike smp kernel, spin_lock/unlock are null ...
5
votes
2answers
244 views
Do spin locks always require a memory barrier? Is spinning on a memory barrier expensive?
I wrote some lock-free code that works fine with local
reads, under most conditions.
Does local spinning on a memory read necessarily imply I
have to ALWAYS insert a memory barrier before the ...
5
votes
10answers
3k views
Spinlocks, How Much Useful Are They?
How often do you find yourself actually using spinlocks in your code? How common is it to come across a situation where using a busy loop actually outperforms the usage of locks?
Personally, when I ...
3
votes
3answers
164 views
Why is “sleeping” not allowed while holding a spinlock? [closed]
Possible Duplicate:
Why can't you sleep while holding spinlock?
As far as I know, spinlocks should be used in short duration, and are only choices in code such as interrupt handler ...
3
votes
1answer
80 views
Faster lock than pthreads
We are building an extremely latency sensitive application.
Our full application takes about 2500 clock cycles in a process apart from locking, and there are two locks that need to be acquired and ...
3
votes
4answers
650 views
spin_lock on non-preemtive linux kernels
I read that on a system with 1 CPU and non preemtive linux kernel (2.6.x) a spin_lock call is equivalent to an empty call, and thus implemented that way.
I can't understand that: shouldn't it be ...
3
votes
2answers
2k views
spin_lock_irqsave vs spin_lock_irq
On a SMP machine we must use spin_lock_irqsave and not spin_lock_irq from interrupt context.
Why would we want to save the flags (which contains the IF)?
Is there another interrupt routine that ...
3
votes
2answers
630 views
replace spin lock with signal
i have alot of spin locks in my multithread code and most of the time they are waiting for other threads to do work and thus chew alot of cpu usage. In linux i normally use pthread_cond_wait and ...
2
votes
1answer
165 views
Why are the implementations of the spin lock different between Windows XP and Windows 7?
I know the spinlock is exported by hal.dll in Windows, so I reverse engineered the code for the spin lock. The results are below.
Windows XP's decompiled spinlock.
unsigned __int32 __thiscall ...
2
votes
1answer
381 views
x86 spinlock using cmpxchg
I'm new to using gcc inline assembly, and was wondering if, on an x86 multi-core machine, a spinlock (without race conditions) could be implemented as (using AT&T syntax):
spin_lock:
mov 0 eax
...
2
votes
3answers
258 views
Equivalent of x86 PAUSE instruction for PPC
Does there exist an equivalent of the x86 PAUSE instruction, which is placed within busy waiting loops to improve performance, particularly on SMT machines, on PowerPC?
2
votes
1answer
335 views
Are the Linux/SMP spinlocks unnecessarily slow?
Having been reading through Understanding the Linux kernel (Bovet & Cesati), the chapter on Kernel Synchronisation states that the spin lock acquisition code boils down to:
1: lock:
btsl ...
2
votes
2answers
942 views
How does x86 pause instruction work in spinlock *and* can it be used in other scenarios?
pause instruction is commonly used in the loop of testing spinlock, when some other thread owns the spinlock, to mitigate the tight loop. It's said that it is equivalent to some NOP instructions. ...
2
votes
1answer
83 views
CMU: Semaphores!
Check My Understanding of semaphores, please!
I understand the idea behind counting semaphores and binary semaphores. However the difference between a spinlock and semaphore implemented with ...
2
votes
1answer
228 views
Why spinlock in linux kernel is in the “.subsection 1” (or “.text.lock.smth”)?
In linux kernel in the implementation of spinlocks, e.g.
http://lxr.linux.no/#linux+v2.6.18/include/asm-i386/semaphore.h#L97
97static inline void down(struct semaphore * sem)
98{
99 ...
2
votes
2answers
266 views
Is it safe to spin on a volatile variable in user-mode threads?
I'm not quite sure if it's safe to spin on a volatile variable in user-mode threads, to implement a light-weight spin_lock, I looked at the tbb source code, tbb_machine.h:170,
//! Spin WHILE the ...
2
votes
3answers
167 views
Why does one loop take longer to detect a shared memory update than another loop?
I've written a 'server' program that writes to shared memory, and a client program that reads from the memory. The server has different 'channels' that it can be writing to, which are just different ...
2
votes
10answers
748 views
What exactly are “spin-locks”?
I always wondered what they are: every time I hear about them, images of futuristic flywheel-like devices go dancing (rolling?) through my mind...
What are they?
1
vote
1answer
71 views
Does Mac OS X have pthread_spinlock_t type?
I didn't find it in Mac, but almost all Linux os support it..
Any one knows how to port it to mac?
1
vote
2answers
39 views
Spinlock in Javascript
How can I do a spinlock in javascript?
I'm trying to load a bunch of images and I can only move forward after everything is loaded, so I have a spinlock like
for(...)
image[i].onload = function() ...
1
vote
1answer
87 views
.NET SpinLock not releasing Thread.BeginCriticalSection
Using .NET reflector, I find that the SpinLock structure has a lot of cases where it calls Thread.BeginCriticalRegion and doesn't call Thread.EndCriticalRegion.
For example, in the public function ...
1
vote
3answers
171 views
When is a good idea to use a spinlock?
It seems that spinlocks aren't that great as they waste CPU cycles when the are waiting (blocking).
If the thread just goes to sleep while waiting for a signal to wakeup, then CPU cycles aren't lost ...
1
vote
2answers
607 views
Disabling all interrupts to protect CPU register state on multi processor systems
I need to ensure in a code portion (in kernel mode) that no one else can modify/check the CR0 register. On a one-processor system I think disabling interrupts is the best. But on multi-processor ...
1
vote
3answers
924 views
mutex vs. spin lock when thread count = hardware parallelism
consider a program with optimal thread count running on dedicated server, so if one thread is locked there're no others (almost) waiting for CPU time. does spin lock provide better performance than ...
1
vote
1answer
199 views
Spinlock in device driver
Can anybody explain exact use of spinlock in case of device driver.
I am just confused as in many of the interrupt handler routines i have seen spinlocks.
As spinlock are busy waiting. it can make ...
1
vote
2answers
851 views
Avoiding sleep while holding a spinlock
I've recently read section 5.5.2 (Spinlocks and Atomic Context) of LDDv3 book:
Avoiding sleep while holding a lock can be more difficult; many kernel functions can sleep, and this behavior is not ...
1
vote
1answer
242 views
Usage of spinlock and cli together
I recently downloaded linux source from http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.34.1.tar.bz2 . I came across the below paragraph in the file called spinlocks.txt in ...
1
vote
2answers
212 views
Do C# 4.0 BCL SpinLock's spin/block when they can't get a lock?
Given the following code:
...
private static SpinLock logLock = new SpinLock(false);
...
private static void ThreadFunc()
{
bool lockTaken = false;
logLock.Enter(ref lockTaken)
{
...
1
vote
3answers
375 views
How is spin lock implemented under the hood?
This is a lock that can be held by
only one thread of execution at a
time. An attempt to acquire the lock
by another thread of execution makes
the latter loop until the lock is
released.
...
1
vote
2answers
260 views
Cross-platform and cross-process atomic int writes on file
I'm writing an application that will have to be able to handle many concurrent accesses to it, either by threads as by processes. So no mutex'es or locks should be applied to this.
To make the use of ...
0
votes
0answers
28 views
Bus Error when Reading data From the Dual Port Memory
Senario: There are two processors communicating data over a Dual Port memory.
Task in Processor 1 is writing into a perticular memory location and a Task in Processor 2 is reading data if available ...
0
votes
0answers
13 views
Anyway i can make Mutex locks Global like Spinlocks
I know this sounds bit weird.Wanted to know if there is anyway i can make Mutex Lcks global like Spinlocks.
0
votes
0answers
102 views
What could cause a deadlock in ImageProviderReleaseInfoCallback / __spin_lock
I have a Cocoa application that uses a number of NSOperationQueue instances to process images in the background. Each queue processes invocation operations that essentially turn NSImage objects into ...
0
votes
1answer
110 views
iOS thread problem
I load image by NSOparationInvokation and call out method in the main thread, which adds this image to scroll view, but app hardly lags. If I load image but not add it view, app works normally, if I ...
0
votes
0answers
158 views
Linux spin locks and preemptions/interrupts
When a thread holding a spin lock, can it get preempted in Linux 2.6? Is there any consequence of this preemption? How can you prevent the preemption when holding a spinlock?
0
votes
2answers
344 views
When should one use a spinlock instead of mutex?
I think both are doing the same job,how do you decide which one to use for synchronization?
0
votes
1answer
142 views
Is there a way to make sem_wait not spin?
I'm currently working on a cross-platform task scheduler, but I'm having a problem with sem_wait spinning while waiting for the semaphore. On Windows, I'm using WaitForSingleObject, which yields the ...
0
votes
2answers
356 views
How best to synchronize memory access shared between kernel and user space, in Windows
I can't find any function to acquire spinlock in Win32 Apis.
Is there a reason?
When I need to use spinlock, what do I do?
I know there is an CriticalSectionAndSpinCount funtion.
But that's not what ...
0
votes
3answers
264 views
How can I use spinlocks on list entries inside the linux kernel?
I'm developing a patch for the linux kernel. I have to use several
lists and I have to protect'em against concurrent modification on a
multicore machine. I'm trying to use spinlocks for this goal, but
...
0
votes
5answers
1k views
Alternative to spinlock
I am using the following spinlock approach:
while(!hasPerformedAction()){
//wait for the user to perform the action
//can add timer here too
}
setHasPerformedAction(false);
return ...