The atomic-swap tag has no wiki summary.
13
votes
2answers
2k views
Atomic swap in GNU C++
I want to verify that my understanding is correct. This kind of thing is tricky so I'm almost sure I am missing something. I have a program consisting of a real-time thread and a non-real-time ...
5
votes
2answers
228 views
Possible to create AtomicReference that can be swapped atomically?
Is there any way to implement a type of reference whose value can be exchanged with another atomically?
In Java we have AtomicReference which can be swapped with a local variable but not with ...
2
votes
1answer
137 views
GLIB: g_atomic_int_get becomes NO-OP?
In a larger piece of code, I noticed that the g_atomic_* functions in glib were not doing what I expected, so I wrote this simple example:
#include <stdlib.h>
#include "glib.h"
#include ...
2
votes
2answers
165 views
Is OSCompareAndSwap (Mac OS X) equivalent to CMPXCHG8B?
Is OSCompareAndSwap (Mac OS X) equivalent to CMPXCHG8B?
1
vote
1answer
105 views
atomic operation implementation
i am using atomic operation provided by SunOs in <sys/atomic.h> , which is
void *atomic_cas_ptr(volatile void *target, void *cmp, void *newval);
now to make is usable, i have to check ...
1
vote
1answer
328 views
Sun compiler's equivalent of gcc's __sync_fetch_and_add? aka Oracle Studio 12.2
Does the Oracle (Sun) Studio 12.2 C/C++/Fortran compiler for Linux 64-bit have an equivalent to the __sync_fetch_and_add function that is provided in gcc? I can't seem to find the wrapper code for ...
1
vote
1answer
92 views
Can this Fast Atomic Lock implementation work?
I have a large data structure that is using striping to reduce lock contention. Right now I am using system locks but 99.99% of the time, the lock is uncontested and futhermore, the amount of time ...
0
votes
1answer
57 views
atomically changing multiple rows in mySQL
I have a mySQL table of the form
entryID (PK), UserID, entryName
Each user (as defined by his userID) may create any number of entries in this table, but for each user, the entryName must be unique. ...
0
votes
2answers
269 views
Declaration of Volatile Pointer Array in C++
I have a struct called Ambigous, and inside the struct I have an array of pointers to other Ambigous.
I want to use OSAtomic.h library, to do CompareandSwaps.
However I am having trouble getting ...
0
votes
2answers
176 views
AtomicSwap instead of AtomicCompareAndSwap?
I know that on MacOSX / PosiX systems, there is atomic-compare-and-swap for C/C++ code via g++.
However, I don't need the compare -- I just want to atomically swap two values. Is there an atomic swap ...