Best way to multi-thread? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:54:58Z http://stackoverflow.com/feeds/question/43086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/43086/best-way-to-multi-thread -3 Best way to multi-thread? Sasayins 2008-09-04T02:24:38Z 2008-09-04T04:28:04Z <p>What is the best way to multi-thread in c language? Very efficient or not CPU hog. Thanks</p> http://stackoverflow.com/questions/43086/best-way-to-multi-thread/43089#43089 1 Answer by Kyle Cronin for Best way to multi-thread? Kyle Cronin 2008-09-04T02:26:07Z 2008-09-04T02:26:07Z <p>If you're on a UNIX-based platform (Linux or Mac OS X) your best option is <a href="http://en.wikipedia.org/wiki/POSIX_Threads" rel="nofollow">POSIX threads</a>. They're the standard cross-platform way to multithread in a POSIX environment. They can also be used in Windows, but there are probably better (more native) solutions for that platform.</p> http://stackoverflow.com/questions/43086/best-way-to-multi-thread/43100#43100 0 Answer by Sasayins for Best way to multi-thread? Sasayins 2008-09-04T02:36:24Z 2008-09-04T02:36:24Z <p>thanks! but im in windows platform.</p> http://stackoverflow.com/questions/43086/best-way-to-multi-thread/43102#43102 1 Answer by 1800 INFORMATION for Best way to multi-thread? 1800 INFORMATION 2008-09-04T02:39:07Z 2008-09-04T02:39:07Z <p>Your question is a bit general to answer effectively. You might look into such things as:</p> <p>CreateThread in the windows SDK</p> <p>boost::thread</p> http://stackoverflow.com/questions/43086/best-way-to-multi-thread/43179#43179 2 Answer by Coding the Wheel for Best way to multi-thread? Coding the Wheel 2008-09-04T04:28:04Z 2008-09-04T04:28:04Z <p>The correct (standard) way to do this on C and Windows is with <a href="http://msdn.microsoft.com/en-us/library/kdzttdcb.aspx" rel="nofollow">__beginthreadex</a>.</p> <p>This is usually preferred to calling <a href="http://msdn.microsoft.com/en-us/library/kdzttdcb.aspx" rel="nofollow">CreateThread</a> directly as CreateThread doesn't init C runtime support for the thread. So if you create a thread using CreateThread, and call a CRT function, bad stuff can/will happen.</p> <p>Note that __beginthreadex calls CreateThread internally, but performs some other work behind the scenes.</p>