Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
158 views

Is it Safe to use 'Unsafe' Thread Functions?

Please pardon my slightly humorous title. I use two different definitions of the word 'safe' in it (obviously). I am rather new to threading (well, I have used threading for many years, but only very ...
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?
4
votes
4answers
1k views

C# multi-threaded unsigned increment

I want to increment an unsigned integer from multiple threads. I know about Interlocked.Increment, but it does not handle unsigned integers. I could use lock(), but I would rather not if possible for ...
3
votes
5answers
177 views

Can I use interlocked operations to update multiple values to avoid locking a critical section/mutex?

I have a multithreaded application (C++) where I need to increment/change a series of values. If I use a series of Interlocked operations, are they considered to be a single atomic operation ? Like in ...
2
votes
3answers
252 views

Difference between interlocked variable access AND critical sections interlocked increment

can someone help explain the different between interlocked variable access AND critical sections interlocked increment in c++? thanks, much appreciated, in advance.
2
votes
3answers
504 views

Can a C# blocking FIFO queue leak messages?

I'm working on an academic open source project and now I need to create a fast blocking FIFO queue in C#. My first implementation simply wrapped a synchronized queue (w/dynamic expansion) within a ...
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 ...
0
votes
2answers
103 views

If Interlocked.Increment is atomic, why should I ever use ++ instead?

I presume this atomic operation is faster than ++. I only see advantages favoring Interlocked.Increment. What are its disavantages?
0
votes
2answers
530 views

InterlockedIncrement vs. ++

How does InterlockedIncrement work? Is the concern only on multi-processor systems? What does it do, disable interrupts across all processors?