Search Results

0
votes

Implementing threads using C++

I'm not familiar with the REL platform. In general, I prefer Intel's TBB for threading, but it only runs on x86 chips right now …
1
vote

Is it practically safe to write static data from multiple threads

In theory it is possible that modifications are implemented as read, modify, write but in practice I can't imagine that this is so. Generally it is so unless yo …
1
vote

Are threading issues for C/C++ “system level programmers” significantly different from those faced by Java programmers?

It depends on what level you choose to work at. Intel TBB and OpenMP handle a lot of common cases from a pretty high level. Posix threads, Windows APIs, and portable libraries like Boost threads …
6
votes

I’ve heard i++ isn’t thread safe, is ++i thread-safe?

If you want an atomic increment in C++ you can use C++0x libraries (the std::atomic datatype) or something like TBB. There was once a time that the GNU coding guidelines said updating datat …
0
votes

Detecting when an object is passed to a new thread in C++?

The solution I'm familiar with is to state "if you don't use the correct API to interact with this object, then all bets are off." You may be able to turn your requirements around and make …
2
votes

Will multi threading provide any performance boost?

The questions you need to answer for your particular application are well-known. First, is the work parallelisable? Amdahl's Law …
1
vote

Performances issues when launching an application on a parallel machine

Do your individual Jobs call new as well? new is nearly always thread safe, but usually …
1
vote

Boost equivalent of ManualResetEvent?

IIRC, ManualResetEvents exist to allow multiple threads to wait on an object, and one thread to get woken at a time when the object is signaled. The "manual reset" part comes from the …
1
vote

What is easiest way to create multithreaded applications with C/C++?

This depends entirely on what you're doing. If you can fit what you're doing into OpenMP then that is the way to go. Otherwise you may want to look at …
0
votes

How port WaitForMultipleObjects to Java?

WaitForMultipleObjects is a Windows API function. Personally I would implement this via simple events (instead of calling ResetEvent have your threads fire off some kind …