Creation of C ++ multi-threaded threads

Source: Internet
Author: User

They are all fragmented code, hoping to reduce the time for beginners.

// Thread process <br/> DWORD winapi threadproc (lpvoid/* pparam */) <br/>{< br/> // do something <br/> return 0; <br/>}< br/> // thread initialization <br/> void Init () <br/> {<br/> Register DWORD threadid; <br/> Register handle thread = createthread (null, 0, threadproc, null, create_suincluded, & threadid ); <br/> // create_susponded: Initialize the thread to the paused state. <br/> setthreadpriority (app-> base. hthread, thread_priority_time_critical); <br/> // set the priority. For some high-standard threads, you may need <br/> resumethread (app-> base. hthread); <br/> // continue thread execution <br/> waitforsingleobject (thread); <br/> // wait for thread return <br/> closehandle (thread ); <br/> // close the thread object <br/>}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.