Tagged Questions
In concurrent programming, an operation (or set of operations) is atomic, linearizable, indivisible or uninterruptible if it appears to the rest of the system to occur instantaneously. Atomicity is a guarantee of isolation from concurrent processes. Additionally, atomic operations commonly have a succeed-or-fail definition — they either successfully change the state of the system, or have no visible effect.
24
votes
4answers
652 views
Is the “switch” statement evaluation thread-safe?
Consider the following sample code:
class MyClass
{
public long x;
public void DoWork()
{
switch (x)
{
case 0xFF00000000L:
// do whatever...
...
22
votes
13answers
3k views
17
votes
4answers
254 views
Simulate tearing a double in C#
I'm running on a 32-bit machine and I'm able to confirm that long values can tear using the following code snippet which hits very quickly.
static void TestTearingLong()
{
...
15
votes
3answers
1k views
reference assignment is atomic so why is Interlocked.Exchange(ref Object, Object) needed?
In my multithreaded asmx web service I had a class field _allData of my own type SystemData which consists of few List<T> and Dictionary<T> marked as volatile. The system data (_allData) ...
14
votes
5answers
566 views
C# fundamentally not portable?
I've been using C# for a while, and have recently started working on adding parallelism to a side project of mine. So, according to Microsoft, reads and writes to ints and even floats are atomic
I'm ...
7
votes
3answers
421 views
On a multicore x86, is a LOCK necessary as a prefix to XCHG?
If mem is a shared memory location, do I need:
XCHG EAX,mem
or:
LOCK XCHG EAX,mem
to do the exchange atomically?
Googling this yields both yes and no answers. Does anyone know this ...
6
votes
3answers
186 views
std::atomic<int> decrement and comparison
On the following code:
std::atomic<int> myint; //Shared variable
//(...)
if( --myint == 0) {
//Code block B
}
Is it possible that more than one thread access the block I named "Code Block ...
5
votes
4answers
166 views
How to implement a concurrent circular ticker (counter) in Java?
I want to implement a circular counter in Java.
The counter on each request should increment (atomically) and on reaching an upper limit should roll over to 0.
What would be the best way to ...
5
votes
1answer
256 views
Is it atomic this “Int64” surrogate?
I am going to create a "long" (Int64) surrogate which has to be atomic, so its copy in a concurrent application will be inherently safe. I cannot use an Int32 because it spans too short as range.
I ...
5
votes
1answer
541 views
compare and swap vs test and set
Could someone explain to me the working and differences of above operations in multi-threading?
5
votes
3answers
332 views
How to move an element in a sorted list and keep the CouchDb write “atomic”
I have elements of a list in couchdb documents. Let's say these are 3 elements in 3 documents:
{ "id" : "783587346", "type" : "aList", "content" : "joey", "sort" : 100.0 }
{ "id" : "358734ff6", ...
4
votes
2answers
72 views
Is 'UPDATE tokens SET tokens = tokens + 1;' atomic in InnoDB?
Without using explicit transactions, is the above statement guaranteed to be atomic in InnoDB? I have MySQL 5.0
thanks
4
votes
2answers
126 views
Lock using atomic operations
Yes, I'm aware of that the following question could be answered with "Use the lock keyword instead" or something similar. But since this is just for "fun", I don't care about those.
I've made a ...
4
votes
1answer
155 views
What is the use case for the atomic exchange (read-write) operation?
C++0x specifies the std::atomic template for thread safe atomic access to variables. This template has, among others, a member function std::atomic::exchange that atomically stores a new value in ...
4
votes
3answers
459 views
Atomic 64 bit writes with GCC
I've gotten myself into a confused mess regarding multithreaded programming and was hoping someone could come and slap some understanding in me.
After doing quite a bit of reading, I've come to the ...
4
votes
2answers
340 views
4
votes
3answers
632 views
Portable c++ atomic swap (Windows - GNU/Linux - MacOSX)
Is there free a portable (Windows, GNU/Linux & MacOSX) library providing a lock-free atomic swap function?
If not, how would it be implemented for each of these platforms? (x86 with VC++ or g++)
...
4
votes
5answers
1k views
Functions for performing atomic operations
Are there functions for performing atomic operations (like increment / decrement of an integer) etc supported by C Run time library or any other utility libraries?
If yes, what all operations can be ...
4
votes
4answers
373 views
Atomic file copy under .NET
I am building a server app that copies files using System.IO.File.Copy(...) function. My files can be rather large, therefore, it has a fair chance that if the machine crashes, it happens during ...
3
votes
2answers
125 views
Is pointer assignment atomic in C++?
I've actually heard claims both ways. I suspect they are not, but I wanted to get the topic settled.
3
votes
2answers
184 views
how to implement an atomic assignment on AIX/powerpc?
I'm porting a kernel extentsion to 32/64 bit AIX on multi-processor PowerPC, written in C. I don't need more than atomic read operation and atomic write operations (I have no use for fetch-and-add, ...
3
votes
2answers
215 views
What filesystem operations are required to be atomic?
Are unlink, fsync, and rename the only ones that are by definition atomic?
Edit: atomic means that an operation either succeeds and has an effect or has fails and has no effect; an operation must not ...
3
votes
2answers
86 views
Isolation level required for reliable de/increments on a single field
Imagine we have a table as follows,
+----+---------+--------+
| id | Name | Bunnies|
+----+---------+--------+
| 1 | England | 1000 |
| 2 | Russia | 1000 |
+----+---------+--------+
And ...
3
votes
3answers
273 views
How does the Unit of Work pattern accommodate references to new aggregates?
Background
As I understand it, the Unit of Work (UoW) pattern essentially provides transaction semantics. In other words, given a domain of aggregates persisted by repositories, a UoW class allows ...
3
votes
1answer
513 views
Lock-Free Data Structures in C++ Compare and Swap Routine
In this paper: Lock-Free Data Structures (pdf) the following "Compare and Swap" fundamental is shown:
template <class T>
bool CAS(T* addr, T exp, T val)
{
if (*addr == exp)
{
*addr = ...
2
votes
4answers
109 views
What is atomic?
These are two atomic operations:
int value = 5;
Object obj = new Object();
But when using a primitive as a method parameter, would this be considered as an atomic operation:
public void ...
2
votes
1answer
147 views
How does one programmatically determine if “write” system call is atomic on a particular file?
In some cases the coder cannot rely on system calls being atomic, e.g. if the file is on a NFS filesystem. (c.f. NFS Overview, FAQ and HOWTO Documents). But atomic system calls are ultimately ...
2
votes
2answers
401 views
atomic file creation on Linux?
I need to create a file if it does not exist, in a way that another process trying to create this file would fail. I need the file be considered "created" even before the creating process finished ...
2
votes
2answers
390 views
should LOCK_EX on both read & write be atomic?
file_put_contents ( "file", "data", LOCK_EX )
for writing (which means - aquire lock and write)
file_get_contents ( "file", LOCK_EX )
for reading (which means - aquire lock and then read)
will ...
2
votes
5answers
209 views
Is an inline function atomic?
Can linux context switch after unlock in the below code if so we have a problem if two threads call this
inline bool CMyAutoLock::Lock(
pthread_mutex_t *pLock,
bool bBlockOk
)
throw ()
{
...
2
votes
4answers
346 views
Modular increment with Java's Atomic classes
I was surprised that Java's AtomicInteger and AtomicLong classes don't have methods for modular increments (so that the value wraps around to zero after hitting a limit).
I figure I've got to be ...
2
votes
3answers
249 views
atomicity in 32/64 bit
the question is about when does a 64bit load/store operations are considered to be atomic.
if i have a 64bit processor, but i'm using 32bit OS. Will i have 64bit atomicity?
if i'm using 64bit OS but ...
2
votes
2answers
186 views
MySQL and PHP: Atomicity and re-entrancy of a PHP code block executing two subsequent queries - how dangerous?
In MySQL I have to check whether select query has returned any records, if not I insert a record. I am afraid though that the whole if-else operation in PHP scripts is NOT as atomic as I would like, ...
2
votes
2answers
117 views
Accessing object members and atomicity
We know from the C# specification that reference read/writes are atomic. In a statement that accesses member of an object, will the reference also be accessed atomically?
I think yes because it is ...
2
votes
2answers
334 views
Ensuring Atomicity sql
I was just reading about RDBMS,
and one property of an RDBMS is
atomicity. So, if money is withdrawn
from an account and transferred to
another, either the transaction
will happen completely or not
at ...
1
vote
1answer
24 views
Is it possible to atomically read a double word with single-word operations?
I remember that at some point, I saw a programming challenge where people were asked to atomically read a double word with single-word operations.
Now, before we go on, a few clarifications:
A ...
1
vote
4answers
64 views
A shared counter is not incrementing as expected on concurrent server
I'm trying to store the number of times any client requests a description from a ServerProtocol class.
Currently, the counter will increment from zero each time a new client joins. Any ideas?
...
1
vote
2answers
57 views
Make an AtomicXXX object volatile
I have read some info about volatile variables and their AtomicXXX counterparts, (e.g. AtomicBoolean).
But are there situations where I need to make the AtomicXXX object itself volatile, or is it ...
1
vote
3answers
51 views
What would be a good design to achieve this synchronization across machines..?
I have 2 machines both running one process each. shell process on Machine A will scp something to machine B, and java process on B will use these files. Both processes run as crontab tasks.
How to ...
1
vote
3answers
65 views
What is atomicity?
According to webopedia it is when a processor both reads and writes to the bus...excluding other processors from accessing it.
In databases, it means that a set of operations either all occur or none ...
1
vote
1answer
67 views
is sql server transaction atomic
so I have a stored procedure (sql server 2008 r2) something like this
BEGIN TRAN
BEGIN TRY
//critical section
select value
update value
//end of critical section
...
1
vote
1answer
38 views
User input validation and database constraints
Assume we have the following database structure and accompanying web page:
The database consists of two tables, t1 and t2. The table t2 consists of two columns, one is called id_bar which is just a ...
1
vote
0answers
70 views
SQL Server - 1 column update, is lock required?
I have a need for unique identifiers in my application. To that end, I created a table in my database that only contains 1 column 'unique_id" (BIGINT) and 1 row.
The idea is to use a stored procedure ...
1
vote
3answers
74 views
Synchronization accross threads / atomic checks?
I need to create an method invoker that any thread (Thread B for example sake) can call, which will execute on the main executing thread (Thead A) at a specific given point in its execution.
Example ...
1
vote
5answers
156 views
how can I convert non atomic operation to atomic
I am trying to understand atomic and non atomic operations.With respect to Operating System and also with respect to C.
As per the wikipedia page here
Consider a simple counter which different ...
1
vote
1answer
125 views
Erlang digraph atomicity and isolation guarantees
Are digraph atomicity and isolation guarantees described anywhere?
Especially:
What state will another process see digraph in, if another process tries to access it (vertices(), out_neighbours() ...
1
vote
1answer
85 views
rcleartool Atomicity
Let's say I have a local view that gets periodically updated using rcleartool update from the central ClearCase server. This update task takes 20~30 seconds to complete.
When my local view is ...
1
vote
0answers
4k views
Atomic vs NonAtomic when to use in Objective-C iOS [closed]
Possible Duplicate:
Objective-C properties: atomic vs nonatomic
IN regards to he @property directives and setting the attribute nonatomic versus atomic:
I do understand that you get a ...
1
vote
2answers
106 views
Expressions in gcc atomic operators
Anyone know what gcc does with expressions passed as the value for atomic builtins. Consider the function below. Will gcc guarantee the atomicity of this operation? (even though extra cycles are ...
1
vote
6answers
421 views
C# - how to make a sequence of method calls atomic?
I have to make a sequence of method calls in C# such that, if one of them fails, the subsequent methods should not be called. In short, the set of calls should be made atomic. How do I achieve this in ...