Chinaunix首页 | 论坛 | 博客
  • 博客访问: 360914
  • 博文数量: 79
  • 博客积分: 1270
  • 博客等级: 中尉
  • 技术积分: 1370
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-12 08:48
个人简介

freedom~~~~~~~~~~

文章分类

全部博文(79)

文章存档

2014年(10)

2013年(2)

2012年(13)

2011年(54)

分类: LINUX

2011-08-22 08:58:45

  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<pthread.h>

  4. static pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;
  5. static pthread_cond_t cond=PTHREAD_COND_INITIALIZER;

  6. pthread_t tid1;
  7. void * thread1()
  8. {
  9.     int i;
  10.     for(i=1;i<=100;i++)
  11.     {
  12.         sleep(1);
  13.         printf("hello world!----->%d\n",i);
  14.         if(i==10)
  15.         {
  16.             pthread_cond_signal(&cond);
  17.         }
  18.     }
  19. }


  20. int main()
  21. {
  22.     int rc1=pthread_create(&tid1,NULL,thread1,NULL);
  23.     if(rc1!=0)
  24.     {
  25.         printf("can't create rc1\n");
  26.         return(-1);
  27.     }
  28.    pthread_cond_wait(&cond,&mutex);
  29.     printf("________________________leave main\n");
  30.     printf("current pid is --------------------%d\n",getpid());
  31.     return 1;
  32. }
阅读(1331) | 评论(0) | 转发(0) |
0

上一篇:乱码问题

下一篇:自动注册设备udev方法

给主人留下些什么吧!~~