时间:2021-05-19
直接看代码吧,代码里有注释
复制代码 代码如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <time.h>
#define MAX 3
int number =0;
pthread_t id[2];
pthread_mutex_t mut; //初始化静态互斥锁
void thread1(void)
{
int i;
printf("Hello,I am pthread1!\n");
for (i=0; i<MAX; i++)
{
pthread_mutex_lock(&mut); //此处上锁,保证number的唯一性
number ++;
printf("Thread1:number = %d\n",number);
pthread_mutex_unlock(&mut);
sleep(1); //linux c下 sleep(minute),里面变量单位是分钟
}
pthread_exit(NULL); //线程通过执行此函数,终止执行。返回是一个空指针类型
}
void thread2(void)
{
int j;
printf("Hello,I'm pthread2\n");
for(j=0; j<MAX; j++)
{
pthread_mutex_lock(&mut);
number ++;
printf("Thread2:number = %d\n",number);
pthread_mutex_unlock(&mut);
sleep(1);
}
pthread_exit(NULL);
}
void thread_create(void)
{
int temp;
memset(&id, 0, sizeof(id));
if(temp = pthread_create(&id[0], NULL, (void *)thread1, NULL)!= 0)
//参数:线程标识符指针 线程属性 线程运行函数起始地址 运行函数属性
//创建成功返回 0
printf("Thread 1 fail to create!\n");
else
printf("Thread 1 created\n");
if(temp = pthread_create(&id[1], NULL, (void *)thread2, NULL)!= 0)
printf("Thread 2 fail to create!\n");
else
printf("Thread 2 created!\n");
}
void thread_wait()
{
if(id[0] != 0)
{
pthread_join(id[0], NULL); //等待线程结束,使用此函数对创建的线程资源回收
printf("Thread1 completed!\n");
}
if(id[1] != 0)
{
pthread_join(id[1], NULL);
printf("Thread2 completed!\n");
}
}
int main(void)
{
int i,ret1,ret2;
pthread_mutex_init(&mut, NULL); //动态互斥锁
printf("Main fuction,creating thread...\n");
thread_create();
printf("Main fuction, waiting for the pthread end!\n");
thread_wait();
return (0);
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
linux下的C\C++多进程多线程编程实例详解1、多进程编程#include#include#includeintmain(){pid_tchild_pid;
OpenMP是一种多处理器多线程的编程语言,能够支持多个平台,包括Linux系统,那么Linux下要如何进行openmp多线程编程呢?一起来了解下吧。 关
本文主要对Linux下的多线程进行一个入门的介绍,虽然是入门,但是十分详细,希望大家通过本文所述,对Linux多线程编程的概念有一定的了解。具体如下。1线程基本
在C++11以前,C++的多线程编程均需依赖系统或第三方接口实现,一定程度上影响了代码的移植性。C++11中,引入了boost库中的多线程部分内容,形成C++标
本文实例讲述了C#使用Parallel类进行多线程编程的方法。分享给大家供大家参考。具体如下:usingSystem;usingSystem.Collectio