Linux系统编程——线程函数(一)

今天我们编写一个程序来实现线程有关的函数:

本程序使用了下面三个线程相关的函数

(1)pthread_self函数

(2)pthread_create函数

(3)pthread_exit函数

这三个函数的详细用法在前面的博客中介绍过了,这里就不介绍了。

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

void *tfn(void *arg)
{
	int i;

	i = (int)arg; //强转。

	if (i == 2)
		pthread_exit(NULL);
	sleep(i);	 //通过i来区别每个线程

	printf("I'm %dth thread, Thread_ID = %lu\n", i+1, pthread_self());

	return NULL;
}

int main(int argc, char *argv[])
{
	int n = 5, i;
	pthread_t tid;


	for (i = 0; i < n; i++) {
		pthread_create(&tid, NULL, tfn, (void *)i);
		//将i转换为指针,在tfn中再强转回整形。
	}

	sleep(n);
	printf("I am main, I'm a thread!\n" 
			"main_thread_ID = %lu\n", pthread_self());//获取线程id

	return 0;
}
程序实现结果:

I'm 1th thread, Thread_ID = 3085867920
I'm 2th thread, Thread_ID = 3075378064
I'm 4th thread, Thread_ID = 3054398352
I'm 5th thread, Thread_ID = 3043908496
I am main, I'm a thread!
main_thread_ID = 3085870784


线程三调用了pthread_exit()函数,所以线程退出了。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值