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

0
votes
0answers
7 views

Struct definition with atomic attribute

I have a struct with lots of attributes like so: #include <atomic> struct Foo { int x; int y; // ... // LOTS of primitive type attributes, followed by... // ... std::atomic_bool ...
2
votes
0answers
47 views

Entity Framework Code First: SaveChanges is not atomic

I have the following very simple unit test that reproduces a case where DbContext.SaveChanges is not atomic. By not atomic I mean that the committed data can be read before all the commit was ...
2
votes
1answer
55 views

Atomic wait-then-take operation on number

I have the following class: public class AtomicLong { private long initial; private long value; public AtomicLong(long value = 0) { this.initial = value; this.value = ...
2
votes
1answer
58 views

Boost memory_order_consume Example

I was looking at a Boost example regarding atomic operations and the happens-before relationship, and I'm a bit confused. In the "happens-before through release and consume" section, there is the ...
1
vote
1answer
35 views

Objective-C atomic operations/locking access to myLocation property in Google Maps iOS SDK

This is partly a question regarding the Google Maps SDK in iOS, though perhaps mostly a question about atomic operations in Objective-C. In my app, I wish to draw a GMSPolyline on a map between the ...
1
vote
1answer
50 views

How to let two threads exchange data via a pointer?

I want an asynchronous thread to edit an object. Therefore I store a pointer to that object. Data *pointer; There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
1answer
48 views

Race conditions despite atomicAdd functions (CUDA)?

I have a problem that is parallel on two levels: I have a ton of sets of (x0, x1, y0, y1) coordinate pairs, which are turned into variables vdx, vdy, vyy and for each of these sets I'm trying to ...
2
votes
1answer
52 views

Is it possible to atomically load and store on X86 processors?

Can this be done atomically? void load_and_store(int* dst, int* src) { int data = *src; *dst = data; } If atomic store has to be done with XCHG [addr], EAX, I would have to load the data into ...
1
vote
1answer
62 views

Atomic operators, SSE/AVX, and OpenMP

I'm wondering if SSE/AVX operations such as addition and multiplication can be an atomic operation? The reason I ask this is that in OpenMP the atomic construct only works on a limited set of ...
-2
votes
0answers
31 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 ...
0
votes
0answers
79 views

Immutable collection (an example in book of scala in depth)

In the book, it has the following example, it only sync the insert, but didn't sync lookup.I knew the currentIndex will point to a different object after insert, but is the operation of pointing to a ...
1
vote
0answers
24 views

int v = n; is this atomic in gcc?

Here's an example of atomic counter But I think it is unsafe. Codes: volatile int i; int get_value() { return i; } int set_value(int x) { i = x; } I know about the gcc atomic builtin, but I ...
0
votes
0answers
28 views

Wanted: Ways to cope with performing atomic actions over unreliable/retryable connection

I have a mobile application that submits commands back to a server. To provide a modern, responsive UI it offers a cancel/retry facility for when the user may have lost connectivity during a data ...
2
votes
2answers
27 views

C - Implementing fetchAndSet with GCC atomic builtins — is there a better way?

I'm looking for a simple, efficient way to implement a simple fetchAndSet with the GCC atomic builtins. The closest thing I see here is the __sync_lock_test_and_set builtin, but that doesn't issue a ...
8
votes
1answer
150 views

Why are the std::atomic_{char,schar,etc.} typedefs allowed to be typedefs to a base class of std::atomic<T>, and not to atomic<T> only?

C++11 [atomics.types.generic]p7: There shall be named types corresponding to the integral specializations of atomic, as specified in Table 145, and a named type atomic_bool corresponding to the ...
0
votes
2answers
43 views

Memory ordering when using atomic variable

AtomicBoolean a = new AtomicBoolean(false); AtomicBoolean b = new AtomicBoolean(false); Thread A { a.compareAndSet(false, true); b.compareAndSet(false, true); } Thread B { print b.get() ...
2
votes
2answers
53 views

C++ atomic with non-trivial type?

Reading the docs on boost::atomic and on std::atomic leaves me confused as to whether the atomic interface is supposed to support non-trivial types? That is, given a (value-)type that can only be ...
0
votes
1answer
86 views

How to control thread lifetime using C++11 atomics

Following on from this question, I'd like to know what's the recommended approach we should take to replace the very common pattern we have in legacy code. We have plenty of places where a primary ...
3
votes
1answer
160 views

clang 3.2 fails on std::atomic — a libc++ issue?

I try to compile the simple code #include <atomic> int bar = 0; void foo(std::atomic<int>&flag) { bar = flag; } with clang++ 3.2 (downloaded as llvm 3.2 from llvm.org; on mac os.x ...
13
votes
1answer
155 views

How to update an atomic maximum?

In serial code, updating a maximum could be accomplished simply by template<typename T> void update_maximum(T& maximum_value, T const& value) noexcept { if(value > maximum_value) ...
4
votes
1answer
193 views

Synchronization riddle with std::memory_order and three threads

Here is a problem about the std::memory_order rules in C++11, when it comes to three threads. Say, one thread producer saves a value and sets a flag. Then, another thread relay waits for this flag ...
1
vote
2answers
163 views

Do I have to use atomic<bool> for “exit” bool variable?

I need to set a flag for another thread to exit. That other thread checks the exit flag from time to time. Do I have to use atomic for the flag or just a plain bool is enough and why (with an example ...
0
votes
1answer
73 views

atomicAdd() for double on GPU

I am doing a project on GPU, and I have to use atomicAdd() for double, because the cuda does not support it for double, so I use the code below, which is NVIDIA provide. __device__ double ...
1
vote
2answers
41 views

SQL Multiple Commands

I am writing a method in C# which executes multiple SQL commands and returns a boolean value which determine if the insertions were successful or not. My problem is that I want to execute this command ...
2
votes
3answers
156 views

Atomic operations in ARM strex and ldrex - can they work on I/O registers?

Suppose I'm modifying a few bits in a memory-mapped I/O register, and it's possible that another process or and ISR could be modifying other bits in the same register. Can ldrex and strex be used to ...
0
votes
0answers
95 views

AtomicInteger Vs synchronized int variable in java : performance difference

After going throught following question Can synchronized blocks be faster than Atomics? i wrote a simple program to compare the performance difference of AomicInteger and synchronized block ...
1
vote
1answer
45 views

OpenGL atomic counter equivalent in CUDA

I've just started trying some CUDA programming, coming from OpenGL/GLSL. In OpenGL, atomic counters appear to be separate from main graphics memory an have next to zero overhead (unlike the ...
0
votes
1answer
54 views

An “atomic” call to cout in MPI

I am interested in whether there is a command or a technique within OpenMPI to have an atomic call to write to stdout (or, for that matter, any stream). What I have noticed is that during the ...
3
votes
1answer
89 views

Why does atomic_flag.clear() have a sub-optimal default memory_order argument?

std::atomic_flag has 2 functions with these default std::memory_orders: void clear(std::memory_order order = std::memory_order_seq_cst); bool test_and_set(std::memory_order order = ...
0
votes
1answer
21 views

Squeryl get value of serial

I insert a new row into a database and its id is auto-incremented ("serial"). How can I get the value of the id after insertion? Currently, I am using the following workaround: inTransaction { ...
3
votes
3answers
146 views

std::atomic with custom class (C++ 11)

I am using std::atomic with a custom class in my library. All works fine with MSVC, but now that i'm trying to get it to run on macOS, i get a linker error: undefined symbols for architecture x86_64: ...
0
votes
1answer
64 views

CUDA atomic function usage with volatile shared memory

I have a CUDA kernel that needs to use an atomic function on volatile shared integer memory. However, when I try to declare the shared memory as volatile and use it in an atomic function, I get an ...
1
vote
2answers
79 views

Error with os.open in Python

I'm trying to create and write a file if it does not exist yet, so that it is co-operatively safe from race conditions, and I'm having (probably stupid) problem. First, here's code: import os def ...
2
votes
3answers
197 views

Initializing std::atomic_bool?

I want to use std::atomic_bool because I want to have a boolean which is suppoed to be accessed by different threads. It's a static member Variable. The Problem is that I want to initialize it with ...
0
votes
0answers
85 views

No type named 'atomic' in namespace 'std'

Why doesn't std::atomic<int> index; Work? Currently using LLVM 3.1 with these params C Language Dialect GNU [-std=gnu99] C++ Language Dialect [-std=c++11] C++ Standard Library libc++(LLVM ...
-1
votes
1answer
19 views

Is replication of a couchdb document with attachments atomic?

When a couchdb document with attachments is replicated, is that replication an atomic operation or is there a short timeframe in which the document does not yet have its attachments?
0
votes
2answers
60 views

Implementation of Long Atomic Int

I would like to use an atomic counter (multi-thread computation) that counts to typically 2^40, so I cannot use a 32 bit int atomic counter directly. I do not have c++11 yet (I will migrate to it but ...
0
votes
1answer
56 views

MongoDB: upsert multiple fields based on multiple criteria

I am new to Mongo. I wanted to atomically upsert a document based on multiple criteria. The document looks like the following: {_id:..., hourOfTime:..., total:..., max:..., min:..., last:...} This ...
1
vote
2answers
116 views

Using Interlocked.CompareExchange to increment a counter until a value

I need to increment a counter until it reaches a particular number. I can use two parallel task to increment the number. Instead of using a lock to check if the number has not reach the maximum ...
0
votes
1answer
203 views

error : identifiers “atomicCAS” & “atomicExch” are undefined under visual studio 2012 & cuda 5

Similar to the linked question I am confronted with the "atomicCAS" & "atomicExch" identifiers not found errors. I searched online for solutions but still cannot solve my problem. I also changed ...
26
votes
4answers
667 views

Can volatile but unfenced reads yield indefinitely stale values? (on real hardware)

In answering this question a further question about the OP's situation came up that I was unsure about: it's mostly a processor architecture question, but with a knock-on question about the C++ 11 ...
3
votes
2answers
66 views

What is the difference between sequential consistency and atomicity?

I read that java volatile are sequential consistent but not atomic. For atomicity java provides different library. Can someone explain difference between two, in simple english ? (I believe the ...
9
votes
1answer
194 views

Is it guaranteed that sizeof(std::atomic<integer type>) == sizeof(integer type)?

In other words, is std::atomic<int> guaranteed to hold only a single int value?
1
vote
4answers
54 views

Alternate version of swap! also returning swapped out value

I talked about this a bit on IRC's #clojure channel today but would like to go more in detail here. Basically, in order to better understand atoms, swap!, deref and Clojure concurrency as a whole, ...
2
votes
1answer
98 views

Proper use of 'volatile' in this case (C)?

I have a structure that holds several pointers. These pointers can be changed by several different threads. These threads update the struct by changing the pointer so that it points at another memory ...
6
votes
0answers
145 views

“Weak” atomic operations? [duplicate]

In the new C++11 standard, many atomic operations are defined in "strong/weak" pairs: template< class T > bool atomic_compare_exchange_weak( std::atomic<T>* obj, ...
3
votes
2answers
105 views

What abstraction should one use for read-modify-writes operations in ARM code

Many ARM processors include special features that allow for various forms of read-modify-write operations on I/O and/or RAM. It seems, however, that no single approach will work consistently across ...
2
votes
1answer
95 views

C11 _Atomic access

I tried to do some searching, and some reading of the C11 spec (n1570). I just want to clarify if the following code is allowed _Atomic(unsigned int) a = 1; if (a == 0) { } Seems ...
0
votes
1answer
128 views

atomic_load/atomic_store on std::shared_ptr in VC11 - why the global spinlock?

I'm trying to understand exactly how to manage shared pointers safely with atomic operations. Turns out VC11 (Visual studio 2012) has support for C++11 and thereby can permit read/write races on ...
0
votes
0answers
25 views

Atomically setting a variable without comparing first

I've been reading up on and experimenting with atomic memory access for synchronization, mainly for educational purposes. Specifically, I'm looking at Mac OS X's OSAtomic* family of functions. Here's ...

1 2 3 4 5 14