[Multithreading] two threads are executed alternately.

Source: Internet
Author: User
#include <iostream>#include <windows.h>using namespace std;HANDLE hMutex;DWORD WINAPI Fun(LPVOID lpParamter){    while(1){WaitForSingleObject(hMutex, INFINITE);cout<<"A"<<endl; Sleep(1000);ReleaseMutex(hMutex);    }return 0;}DWORD WINAPI Fun1(LPVOID lpParamter){while(1) {  WaitForSingleObject(hMutex, INFINITE); cout<<"B"<<endl;  Sleep(1000); ReleaseMutex(hMutex);}return 0;}int main(){HANDLE hThread = CreateThread(NULL, 0, Fun, NULL, 0, NULL);hMutex = CreateMutex(NULL, FALSE, (LPWSTR)"screen");CloseHandle(hThread);HANDLE hThread1 = CreateThread(NULL, 0, Fun1, NULL, 0, NULL);CloseHandle(hThread1);while(1);return 0;}

The preceding two subthreads alternate. The main thread is idle.

 

The following describes the alternation between the main thread and the sub-thread.

#include <iostream>#include <windows.h>using namespace std;HANDLE hMutex;DWORD WINAPI Fun(LPVOID lpParamter){while(1) {  WaitForSingleObject(hMutex, INFINITE); Sleep(1000); cout<<"Fun display!"<<endl; ReleaseMutex(hMutex);}}int main(){HANDLE hThread = CreateThread(NULL, 0, Fun, NULL, 0, NULL);hMutex = CreateMutex(NULL, FALSE, (LPWSTR)"screen");CloseHandle(hThread);while(1) {   WaitForSingleObject(hMutex, INFINITE);   Sleep(1000);   cout<<"main display!"<<endl;   ReleaseMutex(hMutex);}return 0;}

What if I want to output only 10 times? How to change it?

 

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.