Search Results

4
votes

Why the Global Interpreter Lock?

Python, like perl 5, was not designed from the ground up to be thread safe. Threads were grafted on after the fact, so the global interpreter lock is used to maintain mutual exclusion to where only …
8
votes

Simple example of threading in C++

Well, technically any such object will wind up being built over a C-style thread library because C++ only just specified a stock 'std::thread' model in c++0x, which was just nailed down and hasn't …
0
votes

Reader/Writer Locks in C++

Intel Thread Building Blocks also provide a couple of rw_lock variants: http://www.threadingbuildingblocks.org/ …
11
votes

Why doesn’t multithreading in c# reach 100% CPU?

The problem is the COM object. Most COM objects run in the context of a 'single-threaded apartment'. (You may have seen a [STAThread] annotation on the main method of a .NET application fro …
3
votes

C#, return statement in a lock procedure, inside or outside?

It depends, I am going to go against the grain here. I generally would return inside of the lock. Usually the variable mydata is a local variable. I am fond of declaring local vari …
5
votes

Is this way of detecting heartbeats threadsafe and consistent?

Within the java memory model? No, you are not ok. I've seen a number of attempts to head towards a very 'soft flush' approach like this, but without an explicit fence, you're definitely pl …