Best way to multi-thread? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T02:54:58Zhttp://stackoverflow.com/feeds/question/43086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/43086/best-way-to-multi-thread-3Best way to multi-thread?Sasayins2008-09-04T02:24:38Z2008-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#430891Answer by Kyle Cronin for Best way to multi-thread?Kyle Cronin2008-09-04T02:26:07Z2008-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#431000Answer by Sasayins for Best way to multi-thread?Sasayins2008-09-04T02:36:24Z2008-09-04T02:36:24Z<p>thanks! but im in windows platform.</p>
http://stackoverflow.com/questions/43086/best-way-to-multi-thread/43102#431021Answer by 1800 INFORMATION for Best way to multi-thread?1800 INFORMATION2008-09-04T02:39:07Z2008-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#431792Answer by Coding the Wheel for Best way to multi-thread?Coding the Wheel2008-09-04T04:28:04Z2008-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>