今天我们编写一个程序来实现线程有关的函数:
本程序使用了下面三个线程相关的函数
(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()函数,所以线程退出了。