码迷,mamicode.com
首页 > 编程语言 > 详细

线程的创建,等待与终止

时间:2016-04-20 02:19:59      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:include   基础知识   寄存器   多线程   处理机   

一.线程的创建


  1. 基础知识

  线程,有时被称为轻量级进程(Lightweight Process,LWP),是程序执行流的最小单元。一个标准的线程由线程ID,当前指令指针(PC),寄存器集合和堆栈组成。

  线程是进程中的一个实体,是被系统独立调度和分派的基本单位,线程自己不拥有系统资源,只拥有一点儿在运行中必不可少的资源,但它可与同属一个进程的其它线程共享进程所拥有的全部资源。

  一个线程可以创建和撤消另一个线程,同一进程中的多个线程之间可以并发执行。由于线程之间的相互制约,致使线程在运行中呈现出间断性。

  线程也有就绪阻塞运行三种基本状态。就绪状态是指线程具备运行的所有条件,逻辑上可以运行,在等待处理机;运行状态是指线程占有处理机正在运行;阻塞状态是指线程在等待一个事件(如某个信号量),逻辑上不可执行。每一个程序都至少有一个线程,若程序只有一个线程,那就是程序本身。

 在单个程序中同时运行多个线程完成不同的工作,称为多线程


2. 相关函数

技术分享

3. 代码实现

//create.c
  1 #include<stdio.h>
  2 #include<stdlib.h>
  3 #include<pthread.h>
  4 
  5 pthread_t tid;
  6 void* thread_run(void* val)
  7 {
  8     printf("%s:pid is :%d,tid is:%u\n", (char*)val,(int)getpid(),(unsigned long long)pthread_self());
  9 }
 10 int main()
 11 {
 12     int err=pthread_create(&tid,NULL,thread_run,"other thread run");
 13     if(err!=0)
 14     {
 15         printf("create thread error! info is:%s\n",strerror(err));
 16         exit(err);
 17     }
 18     printf("main thread run:pid is:%d,tid is:%u\n",(int)getpid(),(unsigned long long)pthread_self());
 19     sleep(5);
 20     return 0;
 21 }
 
 //makefile
  1 create:create.c
  2     gcc -o $@ $^ -lpthread
  3 .PHONY:clean
  4 clean:
  5     rm -f create

输出结果:

技术分享

结果分析:

    1.属于同一进程的不同线程可通过getpid()和pthread_self()得到相同的pid与不同的tid。

    2.pthread_create()的错误码没有保存在error中,所以不能通过perror()得到,可通strerror()把错误码转换成错误信息再打印。

    3.任意一个线程调用了exit()或_exit(),该进程所有线程将结束。从main()函数中return相当于调用了exit。

    4.为了防止新创建的线程还没有执行就终止,在main函数return前sleep了1秒,但不是很好的办法,因为1秒内,不一定会调用新线程。下面在终止线程上进行优化。


二.线程的终止

  1. 基础知识

只终止某个线程而不终止整个进程,可以有三种方法:

   1. 从线程函数return。这种方法对主线程不适用,从main函数return相当于调用exit。

   2. 一个线程可以调用pthread_cancel终止同一进程中的另一个线程。

   3. 线程可以调用pthread_exit终止自己。

注意:pthread_exit或者return返回的指针所指向的内存单元必须是全局的或者是用malloc分配的,不能在线程函数的栈上分配,因为当其它线程得到这个返回指针时线程函数已经退出了。

2.函数

pthread_cancel

技术分享

技术分享pthread_exit

技术分享

三.线程等待

  1. 函数

技术分享

技术分享

调用该函数的线程将挂起等待,直到id为thread的线程终止。

  1. 基础知识:

thread线程以不同的方法终止,通过pthread_join得到的终止状态是不同的,总结如下:

  1. 如果thread线程通过return返回,value_ptr所指向的单元存放的是thread线程函数的返回值。

  2. 如果thread线程被别的线程调用pthread_cancel异常终掉,value_ptr所指向的单元里存放的是常数PTHREAD_CANCELED。

  3. 如果thread线程是自己调用pthread_exit终止的,value_ptr所指向的单元存放的是传给pthread_exit的参数。 如果对thread线程的终止状态不感兴趣,可以传NULL给value_ptr


2.代码实现:

//destory.c
  1 #include<stdio.h>
  2 #include<stdlib.h>
  3 #include<pthread.h>
  4 
  5 void* thread1(void* val)
  6 {
  7     printf("thread 1 returning...\n");
  8     return (void*)1;
  9 }
 10 void* thread2(void* val)
 11 {
 12     printf("thread 2 exiting...\n");
 13     pthread_exit((void*)2);
 14 }
 15 void* thread3(void* val)
 16 {
 17     while(1)
 18     {
 19         printf("pthread 3 is running,wait for be canceled...\n");
 20         sleep(1);
 21     }
 22     return NULL;
 23 }
 24 int main()
 25 {
 26     pthread_t tid;
 27     void* tret;
 28 
 29     //thread 1 
 30     pthread_create(&tid,NULL,thread1,NULL);
 31     pthread_join(tid,&tret);
 32     printf("thread 1 return:tid:%u,return code is:%d\n",(unsigned long)tid,tret);
 33 
 34     //thread 2
 35     pthread_create(&tid,NULL,thread2,NULL);
 36     pthread_join(tid,&tret);
 37     printf("thread 2 pthread_exit:tid:%u,return code is:%d\n",(unsigned long)tid,tret);
 38 
 39     //thread 3
 40     pthread_create(&tid,NULL,thread3,NULL);
 41     sleep(3);
 42     pthread_cancel(tid);
 43     pthread_join(tid,&tret);
 44     printf("thread 3 pthrea_cancel:tid:%u,return code is:%d\n",(unsigned long)tid,tret);
 45 
 46     return 0;
 47 }
 
 //makefile
  1 destroy:destroy.c
  2     gcc -o $@ $^ -lpthread
  3 .PHONY:clean
  4 clean:
  5     rm -f destroy

输出结果:

技术分享


本文出自 “sunshine225” 博客,请务必保留此出处http://10707460.blog.51cto.com/10697460/1765496

线程的创建,等待与终止

标签:include   基础知识   寄存器   多线程   处理机   

原文地址:http://10707460.blog.51cto.com/10697460/1765496

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!