vote up 2 vote down star

Hi all, I am porting my application to windows from Linux. I am fairly new to the fine-art of porting application across platforms. As far as I know, Windows does not natively support POSIX threads implementation. Is this true? I have heard about some implementation of pthreads for windows (a wrapper or something), would it be better to use them or use CreateMutex and other APIs provided by windows???? Someone pls. enlighten me with the PROs and CONs of both worlds. Some miscellaneous tips for porting would go nicely along with the answer.

Thanks in advance.

flag

6 Answers

vote up 1 vote down check

One thing you need to keep in mind is what is the future of this code. Do you plan on developing (and releasing) on both platforms in the future? Or is this a one way port?

The best thing to do when porting a project is to keep the actual changes to the code as minimal as possible. In your case, this would mean going with a pthread solution. That being said, if you are planning this to be a one way port, going native never hurts. :)

I would take some time to fully examine both stratigies and then implement the one you feel most comfortable with.

link|flag
vote up 2 vote down

this works well: http://sourceware.org/pthreads-win32/

It is a port of the pthreads library for Windows.

link|flag
I'll throw in my 2 cents that we've had very good luck with this library as well. A fairly complex application with lots of semaphores, queues, and theads was ported from VxWorks to POSIX and finally onto Windows with this. – Chris Arguin Jul 15 at 2:35
vote up 0 vote down

The first thing I'd do is to port to Boost Thread under Linux than to Windows.

link|flag
So how is Boost Threads better than POSIX? – puffadder Jul 10 at 16:31
Going forward, Boost Threads, which the next standard library thread base on, will be the recommended way for doing threading in cross platform C++. POSIX thread API and raw Win32 threading API are not exactly easily interchangeable. Condition variable, for example, is available in POSIX but not on all Win32 platforms. If you're going to rely on a library, a POSIX/Win32 wrapper for example, you run the risk of not knowing the quality of the library, and you may not be able to get a lot of help. Boost on the other hand, you're sure to find lots of help when you run into problems. – Shing Yip Jul 10 at 18:02
Thanks. That was a help. Is it available for C? – puffadder Jul 11 at 3:37
No, Boost is C++ only. – Shing Yip Jul 11 at 12:49
vote up 0 vote down

On Windows C/C++ applications that use the CRT need to call beginthread/beginthreadex to properly initialize the CRT in the new thread.

link|flag
vote up 0 vote down

Why not have the best of both worlds and use a library that wraps both pthreads and Window's API and uses the appropriate one under the covers? Your code stays the same on both platforms.

There are no shortage of such libs in C++ so I can't imagine there aren't C versions about.

link|flag
The APR (Apache Portable Runtime) is a fantastic cross-platform C library that does this. Highly recommended as it is well tested and, um, rather popular. – Clay Jul 15 at 2:28
vote up 6 vote down

It's all going to be the same stuff (pthreads is just going to call EnterCriticalSection etc), so if you've got a pthreads wrapper, you should probably use it so that you don't have to change as much code

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.