1
vote
8answers
147 views
Interlocked and Memory Barriers
I have a question about the following code sample (*m_value* isn't volatile, and every thread runs on a separate processor)
void Foo() // executed by thread #1, BEFORE Bar() is ex …
0
votes
3answers
172 views
How to programmatically tell if two variables are on the same stack? (in Windows)
I'm in a thread. I have an address. Is that address from a variable on the same stack that I'm using?
static int *address;
void A()
{
int x;
atomic::CAS(address, 0, &am …
1
vote
5answers
109 views
How does memory fences affect “freshness” of data?
I have a question about the following code sample (taken from: http://www.albahari.com/threading/part4.aspx#_NonBlockingSynch)
class Foo
{
int _answer;
bool _complete;
v …
1
vote
5answers
112 views
Using memory barriers
In the following code sample, does the memory barrier in FuncA is required to ensure that the most up-to-date value is read?
class Foo
{
DateTime m_bar;
void FuncA() // inv …
3
votes
4answers
135 views
When do writes/reads affect main memory?
When I write a value into a field, what guarantees do I get regarding when the new value will be saved in the main memory? For example, how do I know that the processor don't keep …
1
vote
1answer
35 views
Lockfree standard collections and tutorial or articles.
Does someone know of a good resource for the implementation (meaning source code) of lock-free usual data types. I'm thinking of Lists, Queues and so on?
Locking implementations a …
2
votes
6answers
273 views
Is lock free multithreaded programming making anything easier?
I only read a little bit about this topic, but it seems that the only benefit is to get around contention problems but it will not have any important effect on the deadlock problem …
0
votes
3answers
165 views
Thread-safe, lock-free increment function?
UPDATED: Is there a thread-safe, lock-free and available on all Linux distros increment function available in C or C++ ?
1
vote
6answers
228 views
Why is lockless concurrency such a big deal (in Clojure)?
I'm told that Clojure has lockless concurrency and that this is Important.
I've used a number of languages but didn't realize they were performing locks behind the scenes.
Why is …
3
votes
4answers
137 views
When are lock free data structures less performant than mutual exclusion (mutexes)?
I read somewhere (can't find the page anymore) that lock free data structures are more efficient "for certain workloads" which seems to imply that sometimes they're actually slower …
2
votes
7answers
1k views
How to guarantee 64-bit writes are atomic?
When can 64-bit writes be guaranteed to be atomic, when programming in C on an Intel x86-based platform (in particular, an Intel-based Mac running MacOSX 10.4 using the Intel compi …
0
votes
4answers
274 views
Is the C# “lock” construct rendered obselete by Interlocked.CompareExchange<T>?
Summary:
It seems to me that:
wrapping fields representing a logical state into a single immutable consumable object
updating the object's authoritative reference with a call to …
3
votes
5answers
396 views
Lock free constructs in .net
I am new to .net and would like to know whether .net has the java equivalent of AtomicInteger, ConcurrentLinkedQueue, etc?
I did a bit of search and couldnt come up with anything. …
2
votes
4answers
289 views
Is there a decent C++ wrapper around Win32’s lockless SList out there?
Windows provides a lockless singly linked list, as documented at this page:
Win32 SList
I'm wondering if there's an existing good C++ wrapper around this functionality. When I say …
3
votes
3answers
516 views
Lock free multiple readers single writer
I have got an in memory data structure that is read by multiple threads and written by only one thread. Currently I am using a critical section to make this access threadsafe. Unfo …
