Tagged Questions

An atomic operation is indivisible. This term is used to describe transactions in databases, low-level accesses in multithreaded programs, and file system operations, amongst others.

learn more… | top users | synonyms

220
votes
5answers
88k views

Atomic vs nonatomic properties

What do atomic and nonatomic mean in property declarations? @property(nonatomic, retain) UITextField *userName; @property(atomic, retain) UITextField *userName; @property(retain) UITextField ...
32
votes
4answers
6k views

How to perform atomic operations on Linux?

Every Modern OS provides today some atomic operations: Windows has Interlocked* API FreeBSD has <machine/atomic.h> Solaris has <atomic.h> Mac OS X has <libkern/OSAtomic.h> ...
31
votes
3answers
2k views

Why is the volatile qualifier used through out std::atomic?

From what I've read from Herb Sutter and others you would think that volatile and concurrent programming were completely orthogonal concepts, at least as far as C/C++ are concerned. However, in GCC ...
28
votes
10answers
1k views

Are +=, |=, &= etc atomic?

Are the "modify" operators like +=, |=, &= etc atomic? I know ++ is atomic (if you perform x++; in two different threads "simultaneously", you will always end up with x increased by 2, as opposed ...
24
votes
3answers
1k views

Thread-safe cache libraries for .NET

Background: I maintain several Winforms apps and class libraries that either could or already do benefit from caching. I'm also aware of the Caching Application Block and the System.Web.Caching ...
22
votes
3answers
844 views

Double-Checked Lock Singleton in C++11

Is the following singleton implementation data-race free? static std::atomic<Tp *> m_instance; ... static Tp & instance() { if (!m_instance.load(std::memory_order_relaxed)) { ...
22
votes
13answers
3k views

In C is “i+=1;” atomic?

In C, is i+=1; atomic?
21
votes
8answers
5k views

Django: How can I protect against concurrent modification of data base entries

If there a way to protect against concurrent modifications of the same data base entry by two or more users? It would be acceptable to show an error message to the user performing the second ...
20
votes
8answers
2k views

How do I atomically swap 2 ints in C#?

What (if any) is the C# equivalent of the ASM command "XCHG". With that command, which imo is a genuine exchange (unlike Interlocked.Exchange), I could simply atomically swap two ints, which is what ...
19
votes
4answers
399 views

If volatile is useless for threading, why do atomic operations require pointers to volatile data?

I've been reading from many sources that the volatile keyword is not helpful in multithreaded scenarios. However, this assertion is constantly challenged by atomic operation functions that accept ...
17
votes
3answers
1k views

alignment requirements for atomic x86 instructions

Microsoft offers the InterlockedCompareExchange function for performing atomic compare-and-swap operations. There is also an _InterlockedCompareExchange intrinsic. On x86 these are implemented using ...
16
votes
2answers
369 views

Is a variable swap guaranteed to be atomic in python?

With reference to the following link: http://docs.python.org/faq/library.html#what-kinds-of-global-value-mutation-are-thread-safe I wanted to know if the following: (x, y) = (y, x) will be ...
16
votes
5answers
4k views

Atomic UPSERT in SQL Server 2005

What is the correct pattern for doing an atomic "UPSERT" (UPDATE where exists, INSERT otherwise) in SQL Server 2005? I see a lot of code on SO (e.g. see ...
15
votes
3answers
2k views

AtomicInteger lazySet and set

May I know what is the difference among lazySet and set method for AtomicInteger. javadoc doesn't talk much about lazySet : Eventually sets to the given value. It seems that AtomicInteger will not ...
14
votes
9answers
5k views

Which CPU architectures support Compare And Swap (CAS)?

just curious to know which CPU architectures support compare and swap atomic primitives?
13
votes
2answers
721 views

Memory model ordering and visibility?

I tried looking for details on this, I even read the standard on mutexes and atomics... but still I couldnt understand the C++11 memory model visibility guarantees. From what I understand the very ...
13
votes
4answers
1k views

volatile boolean vs. AtomicBoolean

I've looked at the other volatile vs. Atomicxxxx questions in SO (including this one) and have read the description of java.util.current.atomic, and am not quite satisfied with the nuances. If I'm ...
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 ...
12
votes
2answers
427 views

Relative performance of swap vs compare-and-swap locks on x86

Two common locking idioms are: if (!atomic_swap(lockaddr, 1)) /* got the lock */ and: if (!atomic_compare_and_swap(lockaddr, 0, val)) /* got the lock */ where val could simply be a constant or ...
12
votes
1answer
398 views

Is writing a reference atomic on 64bit VMs

The java memory model mandates that writing a int is atomic: That is, if you write a value to it (consisting of 4 bytes) in one thread and read it in another, you will get all bytes or none, but never ...
12
votes
7answers
6k views

How to implement thread safe reference counting in C++

How do you implement an efficient and thread safe reference counting system on X86 CPUs in the C++ programming language? I always run into the problem that the critical operations not atomic, and ...
11
votes
8answers
462 views

Is volatile int in C as good as std::atomic<int> of C++0x?

I need to have atomic variables in my program. Previously I was using std::atomic<int>, but the platform in which I'm working now does not have a g++ compiler that supports C++0x. I used ...
11
votes
8answers
824 views

Atomicity in C++ : Myth or Reality

I have been reading an article about Lockless Programming in MSDN. It says : On all modern processors, you can assume that reads and writes of naturally aligned native types are atomic. As ...
11
votes
7answers
5k views

High-level Compare And Swap (CAS) functions?

I'd like to document what high-level (i.e. C++ not inline assembler ) functions or macros are available for Compare And Swap (CAS) atomic primitives... E.g., WIN32 on x86 has a family of functions ...
10
votes
2answers
1k views

atomic operation cost

What is the cost of the atomic operation (any of compare-and-swap or atomic add/decrement)? How much cycles does it consume? Will it pause other processors on SMP or NUMA, or will it block memory ...
10
votes
9answers
3k views

Is this C++ implementation for an Atomic float safe?

Edit: The code here still has some bugs in it, and it could do better in the performance department, but instead of trying to fix this, for the record I took the problem over to the Intel ...
10
votes
5answers
8k views

Thread-safe atomic operations in gcc

In a program I work on, I have a lot of code as follows: pthread_mutex_lock( &frame->mutex ); frame->variable = variable; pthread_mutex_unlock( &frame->mutex ); This is clearly a ...
9
votes
4answers
508 views

Is struct assignment atomic in C/C++?

I am writing a program which has one process reading and writing to a shared memory and another process only reading it. In the shared memory there is a struct like this: struct A{ int a; ...
9
votes
4answers
321 views

Why is writing to a 24-bit struct not atomic (when writing to a 32-bit struct appears to be)?

I am a tinkererโ€”no doubt about that. For this reason (and very little beyond that), I recently did a little experiment to confirm my suspicion that writing to a struct is not an atomic operation, ...
9
votes
4answers
414 views

Why doesn't this code demonstrate the non-atomicity of reads/writes?

Reading this question, I wanted to test if I could demonstrate the non-atomicity of reads and writes on a type for which the atomicity of such operations is not guaranteed. private static double _d; ...
9
votes
1answer
146 views

How does _mm_mwait work?

How does _mm_mwait from pmmintrin.h work? (I mean not the asm for it, but action and how this action is taken in NUMA systems. The store monitoring is easy to implement only on bus-based SMP systems ...
9
votes
4answers
250 views

Is a lock (threading) atomic?

This may sound like a stupid question, but if one locks a resource in a multi-threaded app, then the operation that happens on the resource, is that done atomically? I.E.: can the processor be ...
9
votes
4answers
1k views

Do atomic operations become slower as more CPUs are added?

x86 and other architectures provide special atomic instructions (lock, cmpxchg, etc.) that allow you to write 'lock free' data structures. But as more and more cores are added, it seems as though the ...
9
votes
6answers
1k views

Are reads and writes to properties atomic in C#?

Reads and writes to certain primitive types in C# such as bool and int are atomic. (See section 5.5, "5.5 Atomicity of variable references", in the C# Language Spec.) But what about accessing such ...
8
votes
4answers
247 views

InterlockedExchange and memory visibility

I have read the article Synchronization and Multiprocessor Issues and I have a question about InterlockedCompareExchange and InterlockedExchange. The question is actually about the last example in ...
8
votes
5answers
825 views

fastest way to atomically compare two integers in C?

uint64_t n; // two 32-bit integers return ( (uint32_t)(n >> 32) == (uint32_t)n ); What is the fastest way to atomically compare the 32 most-significant bits to the 32 least-significant ...
8
votes
5answers
1k views

“pseudo-atomic” operations in C++

So I'm aware that nothing is atomic in C++. But I'm trying to figure out if there are any "pseudo-atomic" assumptions I can make. The reason is that I want to avoid using mutexes in some simple ...
8
votes
10answers
694 views

Does one assembler instruction always execute atomically?

Today I came across this question: you have a code static int counter = 0; void worker() { for (int i = 1; i <= 10; i++) counter++; } If worker would be called from two different ...
8
votes
5answers
2k views

How to do text full history in Django?

I'd like to have the full history of a large text field edited by users, stored using Django. I've seen the projects: Django Full History (Google Code) Django ModelHistory, and Django FullHistory ...
8
votes
7answers
3k views

Interlocked equivalent on Linux

In a C++ Linux app, what is the simplest way to get the functionality that the Interlocked functions on Win32 provide? Specifically, a lightweight way to atomically increment or add 32 or 64 bit ...
7
votes
5answers
275 views

Are volatile reads and writes atomic on Windows+VisualC?

There are a couple of questions on this site asking whether using a volatile variable for atomic / multithreaded access is possible: See here, here, or here for example. Now, the C(++) standard ...
7
votes
3answers
308 views

Implementing atomic<T>::store

I'm attempting to implement the atomic library from the C++0x draft. Specifically, I'm implementing ยง29.6/8, the store method: template <typename T> void atomic<T>::store(T pDesired, ...
7
votes
1answer
397 views

Is python's shutil.move() atomic on linux?

I am wondering whether python's shutil.move is atomic on linux ? Is the behavior different if the source and destination files are on two different partitions or is it same as when they are present on ...
7
votes
4answers
82 views

Atomic operations on several transactionless external systems

Say you have an application connecting 3 different external systems. You need to update something in all 3. In case of a failure, you need to roll back the operations. This is not a hard thing to ...
7
votes
2answers
11k views

C++ atomic operations for lock-free structures

I'm implementing a lock-free mechanism using atomic (double) compare and swap instructions e.g. cmpxchg16b I'm currently writing this in assembly and then linking it in. However, I wondered if there ...
6
votes
6answers
149 views

Factory of singleton objects: is this code thread-safe?

I have a common interface for a number of singleton implementations. Interface defines initialization method which can throw checked exception. I need a factory which will return cached singleton ...
6
votes
2answers
298 views

How fast is access to atomic variables in C++

My question is how fast is access to atomic variables in C++ by using the C++0x actomic<> class? What goes down at the cache level. Say if one thread is just reading it, would it need to go down to ...
6
votes
2answers
414 views

memory barrier and atomic_t on linux

Recently, I am reading some Linux kernel space codes, I see this uint64_t used; uint64_t blocked; used = atomic64_read(&g_variable->used); //#1 barrier(); ...
6
votes
1answer
230 views

C++0X memory_order without fences, applications, chips that support

As a followup from my previous question, the atomic<T> class specifies most operations with a memory_order parameter. In contrast to a fence this memory order affects only the atomic on which it ...
6
votes
4answers
448 views

Java: is there no AtomicFloat or AtomicDouble?

I have found AtomicInteger, AtomicLong, but where is AtomicFloat (or AtomicDouble)? Maybe there is some trick?

1 2 3 4 5 8