Compare and swap (compare and exchange) is an atomic operation that writes a value to a memory location only if its current value is equal to a given expected value
-2
votes
0answers
30 views
This might be an alternative to locks. Why does it not work, or how is this technique called? [closed]
Test-and-set and compare-and-swap instructions (and the semaphores and mutexes built on top of them) can take far longer to be processed than ordinary instructions, which is time wasted at the expense ...
1
vote
1answer
60 views
Is non-blocking CAS in Java really non-blocking?
I was going over an article on non-blocking CAS and came across this code:
public class SimulatedCAS {
private int value;
public synchronized int getValue() {
return value;
}
public ...
3
votes
2answers
97 views
In what situations can do-while be more efficient than while?
While vs. do-while
While and do-while are functionally equivalent when the blocks are empty, although while seems more natural:
do {} while (keepLooping());
while (keepLooping()) {}
One typical ...
6
votes
1answer
245 views
C++11. is synchronizing with std::mutex slower than with std::atomic(memory_order_seq_cst)?
the main reason for using atomics over mutexes, is that mutexes are expensive. but with the default memory model for atomics being memory_order_seq_cst, isn't this just as expensive?
question: can ...
7
votes
1answer
256 views
Why do C++11 CAS operations take two pointer parameters?
Many of the C++11 CAS operations (e.g., atomic_compare_exchange_weak, atomic_compare_exchange_strong) take two pointers and a value, i.e., like this:
bool atomic_compare_exchange(T* pointer, T* ...
0
votes
1answer
91 views
How does incrementAndGet method of AtomicLong works internally?
I am using incrementAndGet method of AtomicLong in my multithreaded code to measure the performance of some of our client side code.
@Override
public void run() {
long start = System.nanoTime();
...
1
vote
0answers
29 views
ArrayList updating values
I have problem to change value at specific position in ArrayList. To be more clear, here is the situation:
I want to add productIDs in one list, and their count in another. But, if user pick product ...
24
votes
1answer
872 views
C++11 atomic memory ordering - is this a correct usage of relaxed (release-consume) ordering?
I have recently made a port to C++11 using std::atomic of a triple buffer to be used as a concurrency sync mechanism. The idea behind this thread sync approach is that for a producer-consumer ...
1
vote
1answer
69 views
how to implement a new kind of compare&swap instruction
I need to implement (pseudo-code) a new type of compare&swap(a,b) (CAS) object
(let's call the new type CAS2) .
CAS and CAS2 objects both support the read operation which returns the
object ...
0
votes
1answer
150 views
C atomic operations, if writes are all atomic swaps do I need atomic load?
I am writing a program in C. FOR SIMPLICITY LETS SAY: There are several variables that many threads can both read and write. Every time one of these is written it is written via an atomic swap (GCC ...
3
votes
1answer
117 views
Real-world examples for ABA in multithreading [closed]
I'm looking for some nice real-world examples of the ABA-problem causing trouble in multithreaded code.
The ABA-problem occurs in concurrent code when executing an atomic compare-and-swap ...
3
votes
2answers
73 views
Is it guaranteed that compareAndSwap can NOT fail for ALL the participating threads?
Suppose some "N" number of threads are trying to CAS an AtomicInteger variable, Is it guaranteed that the CAS must succeed for exactly ONE thread?
Is there a possibility that all the "N" threads ...
0
votes
1answer
29 views
Compare-and-swap for HTTP PUT?
Is there a way to make a compare-and-swap-style mechanism the only way to modify certain resources, whilst following the HTTP standard?
There's an If-Match header which implements the correct ...
0
votes
2answers
111 views
Generating CMPXCHG (without LOCK) in 64-bit builds using Visual C++ (2010)
I need CAS functions to use in a context of multiple threads running on the same CPU (assume that all threads are statically glued to selected CPU, via SetThreadAffinityMask).
...
1
vote
1answer
109 views
how does compiler know not to optimize statements from inside lock/unlock? using boost::spinlocks in c++
Class with two overloaded operator() functions are called from separate threads. See //comments in code below.
Does the optimizer know not to move entryadd = mSpread * ENTRY_MULTIPLIER above the ...
1
vote
1answer
130 views
Atomic compare-and-swap for a location in a shared memory segment
I'd like to understand if there are any hidden issues with using InterlockedCompareExchange() to change a memory in a segment created with CreateFileMapping(INVALID_HANDLE_VALUE) and shared between ...
1
vote
3answers
134 views
int queue with compare and swap has race condition
I have written a synchronised queue for holding integers and am faced with a weird race condition which I cannot seem to be able to understand.
Please do NOT post solutions, I know how to fix the ...
0
votes
3answers
222 views
What is the difference between AtomicBoolean.set(flag) and AtomicBoolean.compareAndSet(!flag, flag)?
I wonder if there is any difference(or possible side effects) between calling:
AtomicBoolean.set(true)
and
AtomicBoolean.compareAndset(false, true)
The JavaDoc of AtomicBoolean#set states:
...
4
votes
1answer
319 views
Should std::atomic<int*>::load be doing a compare-and-swap loop?
Summary: I had expected that std::atomic<int*>::load with std::memory_order_relaxed would be close to the performance of just loading a pointer directly, at least when the loaded value rarely ...
2
votes
1answer
183 views
Is it appropriate to use AtomicReference.compareAndSet to set a reference to the results of a database call?
I am implementing a simple cache with the cache stored as an AtomicReference.
private AtomicReference<Map<String, String>> cacheData;
The cache object should be populated (lazily) from ...
7
votes
3answers
390 views
Java CAS operation performs faster than C equivalent, why?
Here I have Java and C code that tries to do an Atomic increment operation using CAS.
To increment an long variable from 0 to 500,000,000.
C : Time taken : 7300ms
Java : Time Taken : 2083ms
Can any ...
3
votes
3answers
220 views
atomic compare(not equal) and swap
I want to use atomic compare and swap, but instead of equal to, I want to swap only if the memory location is not equal to the old value. Is it possible in C?
0
votes
3answers
144 views
pyPandas: swap cells strings from 2 dataframe columns [SOLVED]
I'm struggling to swap values from 2 columns of a dataframe as follows:
rs649071 rs640249 0.265 0.49
rs647621 rs640249 0.227 0.34
rs644339 rs640249 0.116 0.08
rs641563 rs640249 1.0 33.96
...
3
votes
2answers
87 views
compareAndSet memory effects when expected==update
Java exposes the CAS operation through its atomic classes, e.g.
AtomicInteger.compareAndSet(expected,update)
When expected == update, are these calls a no-op or do they still have the memory ...
1
vote
1answer
88 views
Using OSAtomicCompareAndSwapPtr on iOS with ARC enabled
Pre-automatic reference counting, you could do the appropriate pointer casts in Objective-c to allow you to use bool OSAtomicCompareAndSwapPtr(void* oldValue, void* newValue, void* volatile ...
0
votes
1answer
18 views
Change InactiveDt to be same date as the next lowest EffectiveDt from the product id
Everyone
I have a table
CREATE TABLE ProductPrice
(
ProductId INT NOT NULL,
EffectiveDt DATE NOT NULL,
InactiveDt DATE NOT NULL,
Price ...
3
votes
2answers
355 views
Atomic Compare And Swap with struct in Go
I am trying to create a non-blocking queue package for concurrent application using the algorithm by Maged M. Michael and Michael L. Scott as described here.
This requires the use of atomic ...
2
votes
1answer
216 views
Atomic UPDATE in InnoDB vs MyISAM
Is the following "compare and swap" MySQL statement always atomic regardless of whether the database is InnoDB or MyISAM?
UPDATE tbl_name SET locked=1 WHERE id=ID AND locked <> 1;
I ask this ...
1
vote
2answers
154 views
AtomicReference Usage
Say you have the following class
public class AccessStatistics {
private final int noPages, noErrors;
public AccessStatistics(int noPages, int noErrors) {
this.noPages = noPages;
...
0
votes
2answers
135 views
Lock free list with sync_val_compare_and_swap
I'm trying to provide a thread safe way to update an object. I've seen a few posts about it, but nothing that answers my question 100%.
What I want to do is maintain a pointer called 'm_First' to ...
0
votes
1answer
399 views
MinGW undefined reference to `___atomic_fetch_sub_4'
When trying to build a simple test program that uses atomic operations, I get the error
undefined reference to `___atomic_fetch_sub_4'
Specifically, it only happens when I do a -- combined with ==:
...
8
votes
2answers
929 views
What is Compare And Swap good for?
I was recently reading about the Compare And Swap atomic action (CMPXCHG, .NET's Interlocked.CompareExchange, whatever).
I understand how it works internally, and how it's used from a client.
What ...
16
votes
2answers
430 views
Haskell: How does 'atomicModifyIORef' work?
Can someone explain how atomicModifyIORef works? In particular:
(1) Does it wait for a lock, or optimistically try and retry if there's contention (like TVar).
(2) Why is the signature of ...
0
votes
2answers
347 views
gcc compiling error on Solaris 10
I want to compile a source code, but there are some compiling errors about __sync_xxx functions (__sync_bool_compare_and_swap etc.)
GCC version on machine is 3.4.3 (it must be gcc 4.1 or over for ...
1
vote
1answer
1k views
what's the difference between gcc __sync_bool_compare_and_swap and cmpxchg?
to use cas, gcc provides some useful functions such as
__sync_bool_compare_and_swap
but we can also use asm code like cmpxchg
bool ret;
__asm__ __volatile__(
"lock cmpxchg16b %1;\n"
...
6
votes
3answers
293 views
How to: Write a thread-safe method that may only be called once?
I'm attempting to write a thread-safe method which may only be called once (per object instance). An exception should be thrown if it has been called before.
I have come up with two solutions. Are ...
1
vote
3answers
435 views
Should 64bit Compare&Swap (CAS) work on a 32bit machine? (or 64bit machine?)
So I read that in a 32bit machine, one can use the CAS operation with aligned 64bit blocks.
Similarly, in a 64bit machine, one can use the CAS operation with aligned 128bit blocks.
I'm using a 32bit ...
0
votes
3answers
463 views
Casting a pointer to a volatile void** in C++
I have fairly decent C++ skills, but this one cast has been giving me issues. I have a function that takes in the following parameters: (volatile void **, void * , void*). I have 3 int* variables and ...
1
vote
2answers
333 views
How often atomic operations are used in real software?
All modern CPUs with support of SMP/NUMA/something_bigger have ability of doing atomic operations (here is the list) like Compare-And-Swap=CAS, XCHG, LL/SC or many operations with LOCK prefix in x86. ...
0
votes
1answer
120 views
How do I know if CAS instruction succeeded?
A typical compare-and-swap instruction does not report whether it succeeded. Instead, it just returns the old value regardless. How can I very quickly determine if the CAS successfully updated the ...
4
votes
1answer
179 views
Lockless increment if greater than
Is anybody aware of a lockless way to perform what is logically equivalent to a compare_and_swap_if_greater_than()? We have compare_and_swap(), which is really compare_and_swap_if_equal(). The best I ...
0
votes
1answer
163 views
Why does Compare-And-Swap use Memory and Register
Why does the atomic swap instruction, which can be used to implement spin locks exchange data between a register and a memory location rather than swapping two registers’ contents?
0
votes
1answer
150 views
How to understand this CCAS locking machanizion used in AKKA?
I just came across a piece of code in akka.
https://codereview.scala-lang.org/fisheye/browse/~raw,r=25521/scala-svn/scala/trunk/test/files/presentation/akka/src/akka/util/LockUtil.scala
The core ...
4
votes
2answers
399 views
Can anyone interpret this C++ code (from OpenJDK6) into plain English?
Here's a code snippet from OpenJDK6's hotspot/src/share/vm/prims/unsafe.cpp (starting on line 1082):
// JSR166 ------------------------------------------------------------------
...
5
votes
2answers
488 views
compare-and-swap atomic operation vs Load-link/store-conditional operation
Under an x86 processor I am not sure of the difference between compare-and-swap atomic operation and Load-link/store-conditional operation. Is the latter safer than the former? Is it the case that the ...
3
votes
5answers
655 views
Why Double-Checked Locking is used at all?
I keep on running across code that uses double-checked locking, and I'm still confused as to why it's used at all.
I initially didn't know that double-checked locking is broken, and when I learned ...
1
vote
1answer
283 views
Consensus Value
while reading on concurrent programming, I came across the term Consensus Number in Compare-And-Swap & Compare-And-Set operations. I'm having trouble in understanding what is meant by this term, ...
0
votes
1answer
576 views
Compare and Swap (CAS) implementation in EhCache
I am trying to find an equivalent of MemCache's CASMutator.cas in EhCache. Essentially, I am swapping out EhCache for MemCache and need to implement an interface that calls for setting a value via ...
2
votes
1answer
516 views
Need help in understanding the “ABA” problem
I read one article, describing the ABA problem, but there is something, that I can't understand. I have source code, which fails to work and it is similar to the example in article, but I don't ...
0
votes
1answer
556 views
Trying to create CAS template
at the moment I'm busy fiddling with CAS operations and lock/wait-free algorithms, and for my own sanity I decided to implement a template to handling all the casting for me:
VC6:
template ...
