Linux 简单多线程

#include <iostream>
#include <pthread.h>
using namespace std;


#define NUM 6


void *thread_function(void* arg);


int main()
{
int res, index;
pthread_t threadID[NUM];
void *thread_result;


for(index = 0; index < NUM; ++index)
{
res = pthread_create(&threadID[index], NULL, thread_function, (void*)&index);
if (res != 0)
{
perror("Thread create failed!");
exit(EXIT_FAILURE);
}
sleep(1);
}


printf("Waiting for threads to finished...\n");


for(index = NUM - 1; index >= 0; --index)
{
res = pthread_join(threadID[index], &thread_result);
if (res != 0)
{
perror("Thread join failed!");
exit(EXIT_FAILURE);
}
else
{
printf("Picked up a thread: %d\n", index+1);
}
}
printf("All done\n");
return(EXIT_SUCCESS);
}


void *thread_function(void *arg)
{
int my_number = *(int*)arg;
int rand_num;
printf("thread_function is running.argument was %d\n", my_number);
rand_num = 1 + (int)(9.0 * rand()/(RAND_MAX+1.0));
sleep(rand_num);
printf("Bye from %d\n", my_number);
pthread_exit(NULL);

}


./a.out 
thread_function is running.argument was 0
thread_function is running.argument was 1
thread_function is running.argument was 2
thread_function is running.argument was 3
thread_function is running.argument was 4
Bye from 1
thread_function is running.argument was 5
Waiting for threads to finished...
Bye from 5
Picked up a thread: 6
Bye from 0
Bye from 2
Bye from 3
Bye from 4
Picked up a thread: 5
Picked up a thread: 4
Picked up a thread: 3
Picked up a thread: 2
Picked up a thread: 1
All done


发布了145 篇原创文章 · 获赞 17 · 访问量 23万+

猜你喜欢

转载自blog.csdn.net/guichenglin/article/details/8238569