码迷,mamicode.com
首页 > 编程语言 > 详细

多线程程序设计

时间:2015-05-07 18:50:51      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:linux c   linux编程   多线程程序设计   linux多线程   线程互斥   

1.线程概念

线程就是“轻量级”的进程
线程与创建它的进程共享代码段和数据段
线程拥有自己独立的栈

2.函数学习

创建线程
函数名:pthread_create
函数原型:int pthread_create(pthread_t *thread,const pthread_attr_t *attr,void *(*start_routine)(void *),void *arg)
函数功能:创建新的线程
头文件: <pthread.h> 编译时必须链接pthread
返回值:成功:0  失败:错误编码
参数说明:thread:新创建线程的id
attr:待创建线程的属性,为空可默认属性
start_routine:线程的入口函数
arg:线程入口函数的参数,可以为空
等待线程结束
函数名:pthread_join
函数原型:int pthread_join(pthread_t thread,void **retval)
函数功能:用于等待线程结束
头文件:<pthread.h>  链接库pthread
返回值:成功:0  失败:错误编号
参数说明:thread:要等待结束的线程id  retval:保存线程退出时的状态,一般为空
退出线程
函数名:pthread_exit
函数原型:void pthread_exit(void *retval)
函数功能:结束线程
头文件:<pthread.h> 链接库pthread
返回值:空
参数说明:retval:保存返回值

3.线程互斥

在实际应用中,多个线程往往会访问同一数据或资源,为避免线程之间相互影响,需要引入线程互斥机制,而互斥锁(mutex)互斥机制中的一种
初始化互斥锁 pthread_mutex_init
获取互斥锁     pthread_mutex_lock
释放互斥锁     pthread_mutex_unock

4.综合实例

/* thread.c */

#include <stdio.h>
#include <pthread.h>

pthread_t thread[2];

int number = 0;
pthread_mutex_t mut;

void *work1()
{
	int i = 0;
	printf("I am worker1\n");
	
	for(i=0; i<10; i++)
	{
		pthread_mutex_lock(&mut);
		number++;
		pthread_mutex_unlock(&mut);
		
		printf("worker1 number is %d\n",number);
	
		sleep(1);
	}
	pthread_exit(NULL);
}

void *work2()
{
	int i = 0;
	printf("I am worker2\n");
	
	for(i=0; i<10; i++)
	{
		pthread_mutex_lock(&mut);
		number++;
		pthread_mutex_unlock(&mut);
		
		printf("worker2 number is %d\n",number);
	
		sleep(1);
	}
	pthread_exit(NULL);
}

int main()
{
	pthread_mutex_init(&mut,NULL);
	
	//创建工人1线程
	pthread_create(&thread[0],NULL,work1,NULL);
	
	//创建工人2线程
	pthread_create(&thread[1],NULL,work2,NULL);
	
	//等待工人1线程的结束
	pthread_join(thread[0],NULL);
	
	//等待工人2线程的结束
	pthread_join(thread[1],NULL);
	
	return 0;
}
[root@localhost share]# gcc -lpthread thread.c -o thread
[root@localhost share]# ./thread
I am worker2
worker2 number is 1
I am worker1
worker1 number is 2
worker2 number is 3
worker1 number is 4
worker1 number is 5
worker2 number is 6
worker2 number is 7
worker1 number is 8
worker1 number is 9
worker2 number is 10
worker1 number is 11
worker2 number is 12
worker2 number is 13
worker1 number is 14
worker2 number is 15
worker1 number is 16
worker1 number is 17
worker2 number is 18
worker2 number is 19
worker1 number is 20

多线程程序设计

标签:linux c   linux编程   多线程程序设计   linux多线程   线程互斥   

原文地址:http://blog.csdn.net/zhuwenfeng215/article/details/45562839

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!