Linux线程的thread.c

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

#define THREAD_NUMBER  3
#define REPEAT_NUMBER 5
#define DELAY_TIME_LEVELS  3.0//10.0

void *thrd_func(void *arg)
{
 int thrd_num = (int)arg;
 int delay_time = 0;
 int count = 0;
 printf("Thread %d is starting\n", thrd_num);
 for(count = 0; count < REPEAT_NUMBER; count++)
 {
  delay_time = (int)(rand() * DELAY_TIME_LEVELS/(RAND_MAX)) + 1;
  sleep(delay_time);
  printf("\tThread %d: job %d delay = %d\n",thrd_num, count, delay_time);
 }
 printf("Thread %d finished\n", thrd_num);
 pthread_exit(NULL);
}

int main(void)
{
 pthread_t thread[THREAD_NUMBER];
 int no = 0, res;
 void * thrd_ret;

 srand(time(NULL));
 for(no = 0; no < THREAD_NUMBER; no++)
 {
  res = pthread_create(&thread[no], NULL, thrd_func, (void*)no);
  if(res !=0)
  {
   printf("Create Thread %d failed\n", no);
   exit(res);
  }
 }
 printf("Craete threads sucess\nWaiting for threads to finish...\n");
 for(no = 0; no <THREAD_NUMBER; no++)
 {
  res = pthread_join(thread[no], &thrd_ret);
  if(!res)
  {
   printf("Thread %d joined\n", no);
  }
  else
  {
   printf("Thread %d join failed\n", no);
  }
 }
 return 0;
}

 

不不同线程可以创建不同的thrd_func函数,在函数里面实现相关的程序功能。

如果想让线程一直进行下去,可以把for()改为while(1),退出时可以用return,当然需要把函数类型适当适应

 

srand(time(NULL));

这是两个函数!一个是srand函数!这是在调用rand()这个函数之前使用的!rand()是一个产生随机数的函数!而srand是一个设置随机数种子的函数!通常这两个函数是一起使用的!来完成产生随机数的功能!
而time(NULL)这个函数的返回值是作为srand函数的参数的!意思是以现在的系统时间作为随机数的种子来产生随机数!至于NULL这个参数。只有设置成NULL才能获得系统的时间!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值