⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mutextest.cpp

📁 Linux 下的线程池的源代码。很好用!
💻 CPP
字号:
#include "../Sync.h"#include <unistd.h>#include <stdio.h>#include <stdlib.h>CThreadMutex mutex;int myglobal=0;void* thread_function(void* arg){    int i,j=0;    for(i=0;i<20;i++)    {	mutex.Lock();	j=myglobal;	j++;	printf(".	%d	subthread\n",myglobal);	fflush(stdout);	sleep(2);	myglobal=j;	mutex.Unlock();	    }}int main(){    pthread_t mythread;    int i;    if(pthread_create(&mythread,NULL,thread_function,NULL))    {	printf("error to create thread\n");	abort();    }    for(i=0;i<20;i++)    {	mutex.Lock();	myglobal = myglobal +1;	mutex.Unlock();		printf("o	%d	parentthread\n",myglobal);	fflush(stdout);	sleep(1);    }    if(pthread_join(mythread,NULL))    {	printf("error joining thread!");	abort();    }    printf("\nmyglobal equals %d\n",myglobal);    exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -