Is PThread a good choice for multi-platorm C/C++ multi-threading program? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:15:47Zhttp://stackoverflow.com/feeds/question/499780http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/499780/is-pthread-a-good-choice-for-multi-platorm-c-c-multi-threading-program8Is PThread a good choice for multi-platorm C/C++ multi-threading program?RogerV2009-01-31T23:18:04Z2009-08-22T03:48:29Z
<p>Been doing mostly Java and smattering of .NET for last five years and haven't written any significant C or C++ during that time. So have been away from that scene for a while.</p>
<p>If I want to write a C or C++ program today that does some multi-threading and is source code portable across Windows, Mac OS X, and Linux/Unix - is PThread a good choice?</p>
<p>The C or C++ code won't be doing any GUI, so won't need to worry with any of that.</p>
<p>For the Windows platform, I don't want to bring a lot of Unix baggage, though, in terms of unix emulation runtime libraries. Would prefer a PThread API for Windows that is a thin-as-possible wrapper over existing Windows threading APIs.</p>
<p><strong>ADDENDUM EDIT:</strong></p>
<blockquote>
<p>Am leaning toward going with
boost:thread - I also want to be able
to use C++ try/catch exception
handling too. And even though my
program will be rather minimal and not
particularly OOPish, I like to
encapsulate using class and namespace
- as opposed to C disembodied functions.</p>
</blockquote>
http://stackoverflow.com/questions/499780/is-pthread-a-good-choice-for-multi-platorm-c-c-multi-threading-program/499790#4997904Answer by jalf for Is PThread a good choice for multi-platorm C/C++ multi-threading program?jalf2009-01-31T23:23:51Z2009-01-31T23:23:51Z<p>Nope, pthreads aren't normally available on Windows. (There are a few attempts at implementing it, but it's not supported by the OS directly, at least.)</p>
<p>If you're writing C++, Boost is, as usual, the answer. Boost.Thread has a portable (and safer) threading library.</p>
<p>In C, the simplest solution is probably to wrap write a common wrapper for both pthreads and the Windows threading API.</p>
http://stackoverflow.com/questions/499780/is-pthread-a-good-choice-for-multi-platorm-c-c-multi-threading-program/499796#4997968Answer by gbjbaanb for Is PThread a good choice for multi-platorm C/C++ multi-threading program?gbjbaanb2009-01-31T23:30:32Z2009-02-01T01:54:10Z<p>Well, pthreads is the old posix standard for writing threaded programs. Its the lowest level threading routines, so its a good choice for cross-platform threading.</p>
<p>However, there are alternatives:</p>
<ul>
<li><a href="http://www.ddj.com/cpp/184401518" rel="nofollow">boost::thread</a> - an STL style
threading library </li>
<li>Intel's <a href="http://www.threadingbuildingblocks.org/" rel="nofollow">Thread
Building Blocks</a> </li>
<li><a href="http://openmp.org/wp/" rel="nofollow">OpenMP</a> -
both these are a higher-level way of
writing threaded apps without needing
to do any threading calls.</li>
</ul>
<p>As the latter are all fully supported on all platforms, (pthreads requires a bit of compiler settings as its only part of Windows posix subsystem, unless you want to use <a href="http://sourceware.org/pthreads-win32/" rel="nofollow">Pthreads-w32</a>), then perhaps the latter ones are a better choice. boost::threads are more like a threading library, the other 2 are high-level ways of achieving parallelism without needing to code 'threads', they allow you to write loops that run concurrently automatically (subject to common-sense conditions)</p>
<p>Boost::thread is not a C compatible library though.</p>
<p><strong>edit</strong>: cross-platform abilities of the above:</p>
<blockquote>
<p><a href="http://www.intel.com/cd/software/products/asmo-na/eng/threading/294797.htm#sysreq" rel="nofollow">Intel TBB is cross-platform</a> (Windows*,
Linux*, and Mac OS* X), supports
32-bit and 64-bit applications and
works with Intel, Microsoft and GNU
compilers.</p>
</blockquote>
<p>OpenMP depends on the compiler you want to use, but GCC and/or Intel <a href="http://openmp.org/wp/openmp-compilers/" rel="nofollow">compilers have supported</a> OpenMP Windows, Linux and MacOS.</p>
http://stackoverflow.com/questions/499780/is-pthread-a-good-choice-for-multi-platorm-c-c-multi-threading-program/499865#4998655Answer by Andrew Grant for Is PThread a good choice for multi-platorm C/C++ multi-threading program?Andrew Grant2009-02-01T00:19:41Z2009-02-01T00:19:41Z<p>If you need your code to be truly portable then it may be best to stay away from the various libraries that scatter the internet. At some point you'll find a platform they don't support and will then have to create your own branch.</p>
<p>This is also not a hard problem to solve and can be a good exercise for creating cross-platform code.</p>
<p>I'd suggest you create a class, e.g. CThread, that has separate .cpp implementations for each platform and a pure-virtual execute() function that is called after your thread is constructed/run.</p>
<p>That allows all of your thread-creation and sleep/shutdown/priority code to be implemented using the most appropriate API for the platform. You may also need a header (e.g. ThreadTypes.h) that contains defines/typedefs for each platform.</p>
<p>E.g.</p>
<pre><code>// ThreadTypes.h
#if defined(PLATFORM_WIN) || defined(PLATFORM_XBOX)
typedef DWORD ThreadID
#elif defined(PLATFORM_PS3)
// etc etc
#endif
</code></pre>
<p>This is how I have written all my cross-platform threading code for platforms such as PC/PS2/PS3/360/Wii. It is also a good pattern to follow for things like mutex's and semaphores, which if you have threads you're certain to need at some point :)</p>
http://stackoverflow.com/questions/499780/is-pthread-a-good-choice-for-multi-platorm-c-c-multi-threading-program/1315069#13150690Answer by Devil Jin for Is PThread a good choice for multi-platorm C/C++ multi-threading program?Devil Jin2009-08-22T03:48:29Z2009-08-22T03:48:29Z<p>I will bet on ZThread</p>
<p>Simple API, easier to use than PThreads and FREE</p>