python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Haskell IORef usage in concurrent setting
I am having hard time to understand Haskell's memory model. I got stuck implementing a simple lock-free hash map and while trying to reproduce the error on a smaller example I realized I have no idea ...
ekim boran
Votes: 0
Answers: 1
What exactly is Synchronize-With relationship?
I've been reading this post of Jeff Preshing about The Synchronizes-With Relation, and also the "Release-Acquire Ordering" section in the std::memory_order page from cpp reference, and I don...
YoavKlein
Votes: 0
Answers: 1
"Lock free" write-once, read-often value in conjunction with thread pools
I am facing the following problem:
My program uses the concept of "tasks", where a task exists of code (functions) that together make up a critical area. Each task (object) knows what its &q...
Carlo Wood
Votes: 0
Answers: 1
How to identify code memory model through which an object file is generated?
I have a relocatable object file. I want to verify whether it was build with medium/large/small memory code model (-mcmodel g++ option.).
Is there a way to get that information through objdump/readelf...
Shubham Mehta
Votes: 0
Answers: 0