zoukankan      html  css  js  c++  java
  • UNIX环境高级编程——主线程与子线程的退出关系

    我们在一个线程中经常会创建另外的新线程,如果主线程退出,会不会影响它所创建的新线程呢?下面就来讨论一下。

    1、  主线程等待新线程先结束退出,主线程后退出。正常执行。

    示例代码:

    #include <stdio.h>
    #include <stdlib.h>
    #include <pthread.h>
    #include <unistd.h>
    #include <sys/types.h>
    
    pthread_t ntid;//线程ID
    
    void printids(const char *s)
    {
            pid_t pid;
            pthread_t tid;
            pid = getpid();
            tid = pthread_self();
            printf("%s pid %u tid %u (0x%x)
    ",s,(unsigned int)pid,
                            (unsigned int)tid,(unsigned int)tid);
    }
    
    void *thrfun(void *arg){
            //sleep(1);//使得主线程先退出
            printids("new thread");
    
            return ((void *)0);
    }
    
    int main(){
            int err;
            err = pthread_create(&ntid,NULL,thrfun,NULL);
    
            if(err != 0)
                    perror("pthread_create");
            printids("main thread");
    
            sleep(1);//等待新线程先结束
    
            exit(0);
    }
    运行结果:

    huangcheng@ubuntu:~$ ./a.out
    main thread pid 2344 tid 3077813952 (0xb773b6c0)
    new thread pid 2344 tid 3077811056 (0xb773ab70)

    2、  进程先退出,新线程也会立即退出,系统清除所有资源。

    示例代码:

    #include <stdio.h>
    #include <stdlib.h>
    #include <pthread.h>
    #include <unistd.h>
    #include <sys/types.h>
    
    pthread_t ntid;//线程ID
    
    void printids(const char *s)
    {
            pid_t pid;
            pthread_t tid;
            pid = getpid();
            tid = pthread_self();
            printf("%s pid %u tid %u (0x%x)
    ",s,(unsigned int)pid,
                            (unsigned int)tid,(unsigned int)tid);
    }
    
    void *thrfun(void *arg){
            sleep(1);//使得主线程先退出
            printids("new thread");
    
            return ((void *)0);
    }
    
    int main(){
            int err;
            err = pthread_create(&ntid,NULL,thrfun,NULL);
    
            if(err != 0)
                    perror("pthread_create");
            printids("main thread");
    
            //sleep(1);//等待新线程先结束
    
            exit(0);
    }
    运行结果:

    huangcheng@ubuntu:~$ ./a.out
    main thread pid 2366 tid 3077641920 (0xb77116c0)
    可以发现主线程退出后所创建的新线程也停止运行了。


    3、如果主线程调用了pthread_exit,那么它退出了,子线程也不会退出。

    示例代码:

    #include <stdio.h>
    #include <stdlib.h>
    #include <pthread.h>
    #include <unistd.h>
    #include <sys/types.h>
    
    pthread_t ntid;//线程ID
    
    void printids(const char *s)
    {
            pid_t pid;
            pthread_t tid;
            pid = getpid();
            tid = pthread_self();
            printf("%s pid %u tid %u (0x%x)
    ",s,(unsigned int)pid,
                            (unsigned int)tid,(unsigned int)tid);
    }
    
    void *thrfun(void *arg){
            sleep(1);//使得主线程先退出
            printids("new thread");
    
            return ((void *)0);
    }
    
    int main(){
            int err;
            err = pthread_create(&ntid,NULL,thrfun,NULL);
    
            if(err != 0)
                    perror("pthread_create");
            printids("main thread");
    
            //sleep(1);//等待新线程先结束
    		pthread_exit(NULL);
    
          //  exit(0);
    }
    运行结果:

    huangcheng@ubuntu:~$ ./a.out
    main thread pid 2385 tid 3077768896 (0xb77306c0)
    new thread pid 2385 tid 3077766000 (0xb772fb70)

    POSIX标准定义:

    When you program with POSIX Threads API,there is one thing about pthread_exit() that you may ignore for mistake. Insubroutines that complete normally, there is nothing special you have to dounless you want to pass a return code back using pthread_exit(). The completionwon't affect the other threads which were created by the main thread of thissubroutine. However, in main(), when the code has been executed to the end,there could leave a choice for you. If you want to kill all the threads thatmain() created before, you can dispense with calling any functions. But if you want to keep the process and all the other threadsexcept for the main thread alive after the exit of main(), then you can call pthread_exit()to realize it. And any files opened inside the main thread will remain openafter its termination.

     

    按照POSIX标准定义,当主线程在子线程终止之前调用pthread_exit()时,子线程是不会退出的。

     

    注意:这里在main函数中调用pthread_exit()只会是主线程退出,而进程并未退出。因此新线程继续执行而没有退出。

    我们可以在return 0;这条语句前面添加一条输出语句printf(“Mainthread has exited! ”);来进行测试,输出结果不发生任何变化,说明这条语句没有被执行到。也就说明进程并未退出。

     

    因此:

         一个线程的退出不会影响另外一个线程。但是进程结束,所有线程也就结束了,所有资源会被回收。

     

    我们可以再写一个程序来进行验证:


    4、在创建的新线程B中再次创建新线程C,那么如果B先退出,那么C将会继续执行而不会退出。

    示例代码:

    #include <stdio.h>
    #include <stdlib.h>
    #include <pthread.h>
    #include <unistd.h>
    #include <sys/types.h>
    
    pthread_t ntid;//线程ID
    
    void printids(const char *s)
    {
            pid_t pid;
            pthread_t tid;
            pid = getpid();
            tid = pthread_self();
            printf("%s pid %u tid %u (0x%x)
    ",s,(unsigned int)pid,
                           (unsigned int)tid,(unsigned int)tid);
    }
    
    
    void *thrfun2(void *arg){
            sleep(1);//使得创建它的主线程先退出
            printids("new thread of the new thread");
    
            return ((void *)0);
    }
    
    void *thrfun(void *arg){
            sleep(1);//使得主线程先退出
            printids("new thread");
            int err;
            err = pthread_create(&ntid,NULL,thrfun2,NULL);
    
            if(err != 0)
                    perror("pthread_create");
    
            return ((void *)0);
    }
    
    int main(){
            int err;
            err = pthread_create(&ntid,NULL,thrfun,NULL);
    
            if(err != 0)
                    perror("pthread_create");
            printids("main thread");
    
            //sleep(1);
    
            pthread_exit(NULL);
    }

    运行结果:

    huangcheng@ubuntu:~$ ./a.out
    main thread pid 2413 tid 3077912256 (0xb77536c0)
    new thread pid 2413 tid 3077909360 (0xb7752b70)
    new thread of the new thread pid 2413 tid 3069516656 (0xb6f51b70)

  • 相关阅读:
    .net 中 数据库的查询参数写法。微软其他开发环境同理
    【开源】女人值钱计算器,C++
    远程桌面的端口修改
    .net 中使用ActiveX控件的自动创建的包装器的问题(自动生成的Interop.Ax*Lib.dll)
    ASP.NET站点的同时部署给不同的客户。通过数据库配置站点的Top、版权、站点名称
    当下常见的十大(现在补充了,是十一大手机操作系统)手机(平板)操作系统
    项目外包,类似QQ这样界面的客户端,要求界面漂亮,功能是帮助客户完成在线业务的功能。
    stdoled.dll 的问题
    dotnet调用外部dll中,参数数据类型的问题
    前两天用VC6做的修改远程桌面端口的命令行小程序,源码。
  • 原文地址:https://www.cnblogs.com/hehehaha/p/6332654.html
Copyright © 2011-2022 走看看