Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

76
votes
8answers
11k views

Volatile vs. Interlocked vs. lock

Let's say that a class has a public int counter field that is accessed by multiple threads. This int is only incremented or decremented. To increment this field, which approach should be used, and ...
14
votes
5answers
567 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 ...
9
votes
7answers
2k views

Reading interlocked variables

Assume: A. C++ under WIN32. B. A properly aligned volatile integer incremented and decremented using InterlockedIncrement() and InterlockedDecrement(). __declspec (align(8)) volatile LONG ...
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
3answers
965 views

Where is InterlockedRead?

Win32 api has a set of InterlockedXXX functions to atomically and synchronously manipulate simple variables, however there doesn't seem to be any InterlockedRead function, to simply retrive the value ...
8
votes
5answers
3k views

Performance of Interlocked.Increment

Is Interlocked.Increment(ref x) faster or slower than x++ for ints and longs on various platforms?
6
votes
3answers
266 views

What is Interlocked.Increment actually doing?

Interlocked.Increment seems like among the most standard/simple of operations one would need to perform in multithreaded code. I assume that the functionality of the method is some sort pattern that ...
6
votes
9answers
4k views

Is a lock (wait) free doubly linked list possible?

Asking this question with C# tag, but if it is possible, it should be possible in any language. Is it possible to implement a doubly linked list using Interlocked operations to provide no-wait ...
5
votes
2answers
219 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 ...
5
votes
4answers
234 views

Can someone help spot the errors in my low lock list?

I've written a low lock list in C++ on windows 32-bit. I'm getting BIG improvements over using critical sections but I'd like someone to sanity check that what I'm doing is correct and there aren't ...
5
votes
2answers
454 views

Are Interlocked* functions useful on shared memory?

Two Windows processes have memory mapped the same shared file. If the file consists of counters, is it appropriate to use the Interlocked* functions (like InterlockedIncrement) to update those ...
5
votes
2answers
966 views

What's Java's equivalent of .Net's Interlocked class?

How do I modify an int atomically and thread-safely in Java? Atomically increment, test & set, etc...?
4
votes
2answers
102 views

Fields read from/written by several threads, Interlocked vs. volatile

There are a fair share of questions about Interlocked vs. volatile here on SO, I understand and know the concepts of volatile (no re-ordering, always reading from memory, etc.) and I am aware of how ...
4
votes
1answer
185 views

Using Interlocked.CompareExchange with a class

System.Threading.Interlocked.CompareExchange operator provides atomic (thus thread-safe) C# implementation of the Compare-And-Swap operation. For example int i = 5; Interlocked.CompareExchange(ref ...
4
votes
2answers
294 views

Is this a correct Interlocked synchronization design?

I have a system that takes Samples. I have multiple client threads in the application that are interested in these Samples, but the actual process of taking a Sample can only occur in one context. ...
4
votes
5answers
3k views

Why use SyncLocks in .NET for simple operations when Interlocked class is available?

I've been doing simple multi-threading in VB.NET for a while, and have just gotten into my first large multi-threaded project. I've always done everything using the Synclock statement because I didn't ...
4
votes
3answers
835 views

Why does Interlocked.CompareExchange<T> only support reference types?

Disclaimer: My posts are apparently always verbose. If you happen to know the answer to the title question, feel free to just answer it without reading my extended discussion below. The ...
4
votes
1answer
276 views

Using Interlocked

Is this code thread-safe? or put it this way: Is there anyway to call GetIt() and that GetIt() will return the same number to 2 different threads Private Shared hitCount As Long = 1 Public Shared ...
4
votes
4answers
3k views

InterlockedIncrement usage

While reading about the function InterlockedIncrement I saw the remark that the variable passed must be aligned on a 32-bit boundary. Normally I have seen the code which uses the InterlockedIncrement ...
3
votes
2answers
84 views

Parallel Programming Interlocked C#

Im confused with the example at http://msdn.microsoft.com/en-us/library/dd997393.aspx Parallel.ForEach<int, long>(nums, // source collection () => 0, // ...
3
votes
4answers
246 views

Interlocked Exchange of a struct

I want to use InterlockedExchange from the WinAPI to use a lock free synchronization of threads. At the moment I have a class like this. struct DataExchange { volatile LONG m_value; void ...
3
votes
2answers
831 views

Lockless using InterlockedCompareExchange

I am trying to make following snip of code lockless using interlocked operations, Any idea how to translate this? if (m_Ref == 0xFFFF) m_Ref = 1; else { if (++m_Ref == 1) ...
3
votes
2answers
401 views

Interlocked operations with acquire and release semantic (multi-platform)

EDIT: Okay, I've got a specific question. I want to implement 'exchange' functionality with acquire and release semantic (pseudo-code): interlocked_inc_32(target) { mov ecx, 1 lea eax, ...
3
votes
1answer
116 views

Unsigned Interlocked Reads

What is the reasoning behind Interlocked.Read() only being defined for Int64 and not for UInt64? I wouldn't have thought there was any difference between the two types.
3
votes
5answers
788 views

Is there any advantage of using volatile keyword in contrast to use the Interlocked class?

In other words, can I do something with a volatile variable that could not also be solved with a normal variable and the Interlocked class?
3
votes
2answers
2k views

Interlocked used to increment/mimick a boolean, is this safe?

I'm just wondering whether this code that a fellow developer (who has since left) is OK, I think he wanted to avoid putting a lock. Is there a performance difference between this and just using a ...
3
votes
4answers
2k views

C# Interlocked Exchange

I have a bit of my game which looks like this: public static float Time; float someValue = 123; Interlocked.Exchange(ref Time, someValue); I want to change Time to be a Uint32, however when I try ...
3
votes
4answers
535 views

Does Interlocked provide visibility in all threads?

Suppose I have a variable "counter", and there are several threads accessing and setting the value of "counter" by using Interlocked, i.e.: int value = Interlocked.Increment(ref counter); and int ...
2
votes
2answers
58 views

_InterlockedCompareExchange64 compiler intrinsic on Windows XP?

Based on the Microsoft documentation InterlockedCompareExchange64 is not available as a Windows API call until Windows Vista. See ...
2
votes
2answers
164 views

How does this MSDN CompareExchange sample not need a volatile read?

I was looking for a thread-safe counter implementation using Interlocked that supported incrementing by arbitrary values, and found this sample straight from the Interlocked.CompareExchange ...
2
votes
2answers
159 views

very strange and severe multithread inconsistency problem c#

I have a very simple watchdog program with 2 threads. One thread is updating a long variable and the other thread reads the variable. and alert if it was more than X seconds from the last update. The ...
2
votes
1answer
347 views

Is it safe to mix locks and interlock operations?

I have some code which must be thread safe whose behavior resembles this: protected long m_RunningValue protected long m_RunningCounter protected object m_Lock = new object(); public long ...
2
votes
3answers
112 views

Does Interlocked.CompareExchange(double,double,double) work in 32 bit OS?

I'm maintaining a high performance class that can be operated on by multiple threads. Many of the fields are volatile ints, and as it turns out I need to upgrade one of those to a double. I'm ...
1
vote
4answers
112 views

Reentrant Timer in Windows Service

I want to build a windows Service, which should execute different methods at different times. Its not about accuracy at all. Im using a system.timers.timer, and regulate the different methods to be ...
1
vote
2answers
76 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. ...
1
vote
1answer
81 views

C# How to use Interlocked.CompareExchange

My goal is the following: There is a certain range of integers, and I have to test every integer in that range for something random. I want to use multiple threads for this, and divide the work ...
1
vote
2answers
82 views

Test and conditionally update a long using Interlocked

Is there a neat way to do this using the Interlocked class? Or should I just use lock { }? My specific use case is that I have multiple threads that compute a long value, and compare it to a shared ...
1
vote
2answers
65 views

Encountering unexpected Interlocked behaviour?

I'm writing a web link checker program and encountering behaviour with Interlocked that I can't explain. First, here's an abridged version of the code: public class LinkCheckProcessor { private ...
1
vote
3answers
145 views

Can Interlocked.Exchange exchange two byte[] arrays?

I want to swap two byte arrays atomically, without the need for a lock. i.e. I don't want to do byte[] src; byte[] dest; lock(synchLock) { dest = src; } Is this ...
1
vote
3answers
94 views

Does lock() makes sense here?

I have a simple class like : public class XXX { double val1; double val2; double delta; public void SetValues(double v1, double v2) { val1 = v1; val2 = v2; ...
1
vote
4answers
194 views

WinAPI _Interlocked* intrinsic functions for char, short

I need to use _Interlocked*** function on char or short, but it takes long pointer as input. It seems that there is function _InterlockedExchange8, I don't see any documentation on that. Looks like ...
1
vote
3answers
151 views

How first entered thread can signal to other concurrent threads the end of same method?

How first entered thread can signal to other concurrent threads the end of same method ? I have method named say PollDPRAM(). It must make a trip over network to some slow hardware and refresh object ...
1
vote
5answers
464 views

C# Object Pooling With Interlocked.Increment

I have seen many good object pool implementations. For example: http://stackoverflow.com/questions/2510975/c-object-pooling-pattern-implementation. But it seems like the thread-safe ones always use ...
1
vote
3answers
155 views

locking mechanism that provides information about the state in .NET 3.5

I'm trying to find a way to provide exclusive access to a resource, while at the same time providing information about the state of the lock (_isWorking) for other classes to read. Here's what I have ...
1
vote
2answers
337 views

Does Interlocked guarantee visibility to other threads in C# or do I still have to use volatile?

I've been reading the answer to a similar question, but I'm still a little confused... Abel had a great answer, but this is the part that I'm unsure about: ...declaring a variable volatile makes ...
1
vote
3answers
1k views

Safety of Interlock.Exchange and Garbage Collection

I have an object that I am accessing from two threads. One thread calls a long-running member function on the object that returns a value. The second thread updates the object used to produce that ...
0
votes
1answer
25 views

InterlockedExchange Visual Studio 2010 Intrinsic

I have intrinsics enabled in the optimization settings for the compiler, however, the resulting code for InterlockedExchange is generating calls into kernel32.dll rather than producing inline ...
0
votes
1answer
51 views

Why doesn't InterlockedCompareExchange return changed value?

LONG __cdecl InterlockedCompareExchange( __inout LONG volatile *Destination, __in LONG Exchange, __in LONG Comparand ); Return value The function returns the initial value of the ...
0
votes
0answers
33 views

How to use interlocked operations against memory-mapped files in .Net

Is there any way to use the Interlocked.CompareExchange(); and Interlocked.Increment(); methods against values stored in a memory-mapped file? I'd like to implement a multi-threaded service that will ...
0
votes
2answers
178 views

Interlocked functions c++

I am developing a system that uses shared memory and interlocked functions. Let's assume i have volatile unsigned int n, a, b. I want to do the following pseudocode atomicly: if (a <= n ...

1 2