首页 > 学院 > 开发设计 > 正文

线程管理demo1

2019-11-06 06:57:52
字体:
来源:转载
供稿:网友
#include<stdio.h>#include<stdlib.h>#include<pthread.h>#include<windows.h>#PRagma comment(lib, "pthreadVC2.lib") /*线程一*/  void thread_1(void)  {      int i=0;      for(i=0;i<=6;i++)      {          printf("This is a pthread_1./n");          if(i==2)              pthread_exit(0);                      //用pthread_exit()来调用线程的返回值,用来退出线程,但是退出线程所占用的资源不会随着线程的终止而得到释放          Sleep(1);      }  }    /*线程二*/  void thread_2(void)  {      int i;      for(i=0;i<3;i++)  

        printf("This is a pthread_2./n");           

    pthread_exit(0);                              //用pthread_exit()来调用线程的返回值,用来退出线程,但是退出线程所占用的资源不会随着线程的终止而得到释放  }    int main(void)  {      pthread_t id_1,id_2;      int i,ret;  /*创建线程一*/      ret=pthread_create(&id_1,NULL,(void  *) thread_1,NULL);      if(ret!=0)      {          printf("Create pthread error!/n");      return -1;      }  /*创建线程二*/       ret=pthread_create(&id_2,NULL,(void  *) thread_2,NULL);      if(ret!=0)      {          printf("Create pthread error!/n");      return -1;      }  /*等待线程结束*/      pthread_join(id_1,NULL);      pthread_join(id_2,NULL);      return 0;  

}  


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表