Click here to Skip to main content
15,886,067 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,
I work on linux with the language C++. But use the pthread C APIs on linux is very hard to the work, so is anyboy can supply a open code encapsulated by the c++ language like java Thread class!

Thank you!
Posted
Comments
Eugen Podsypalnikov 26-Aug-11 2:52am    
Would be QT thinkable for you ? :)
( http://www.youtube.com/watch?v=jfHM4pQSqt4 )

C++0x (wll be C++11 soon) has in its specification a <thread> header that provides just that interface.

Boost Thread was the inspirer of that header, but -being written for C++03- does not fully comply anymore to the evolving standard.

Unfortunately not all the compilers support (yet) the thread library. Boost itself changed its Thread library to be more "affine" to the 0x specs, breaking part of preexisting code ...

Today is probably the best choice, but in a near future the standard implementation should be available.
Moving from the actual boost::thread to std::thread should not be complicated so ... stay tuned!
 
Share this answer
 
Have a look at boost's Thread[^] library.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 26-Aug-11 3:00am    
Using boost library is often a good idea due to their multiplatform nature and quality. My 5.
--SA
CPallini 26-Aug-11 3:07am    
But, I should have mentioned, is not Java-like.
BTW thank you.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900