• Linux---多线程(上)


    一、线程概念

    • 线程是比进程更加轻量化的一种执行流 / 线程是在进程内部执行的一种执行流
    • 线程是CPU调度的基本单位,进程是承担系统资源的基本实体

    在说线程之前我们来回顾一下进程的创建过程,如下图

    那么以进程为参考,我们该如何去设计创建一个线程呢?
    线程不止一个,就注定它也需要被管理,即先描述在组织,即线程需要有一个TCB(和PCB类似),同时线程也是执行流,也需要被调度运行,被管理,所以我们还需要给它设计一系列的算法,然后还得让它和进程联系起来,这样很麻烦

    那有没有更简单的做法呢?
    由于线程同进程一样也是一个执行流,那么管理进程用的一些信息,线程也应该需要,只不过线程更加起轻量化而已(这个后面会有具体说明),所以进程的结构体和管理用的内核数据结构对于线程也应该同样适用,所以我们可以选择复用进程的代码和数据结构,轻松的完成任务,并且也不用考虑进程和线程的耦合问题,因为它们处在同一个体系框架下
    (上面介绍的是Linux的做法,当然也有OS是将进程和线程分开来设计的)

    具体如下

    但是现在又出现了一个问题,如何看待进程???根据上面这张图,我们会发现进程和线程似乎一样了,都有数据结构和各自的代码和数据。下面我们来进一步理解进程

    感性的理解进程和线程

    我们可以将进程想象成一个家庭,线程则是家庭中的人,进程的任务就是将这个家变得越来越好,所以家中的每个人都要分工合作干好各自的事,每个家庭都具有独立性(进程独立性),即你生活的好不好跟你的邻居没太大关系,但是你们可能会有交集(进程间通信),之前我们讲的进程可以看成是家中只有一个人的情况。


    下面写一段代码(不用管创建线程的函数,后面会讲,主要是观察现象)

    1. #include
    2. #include
    3. #include
    4. //新线程
    5. void *Threadroutine(void *args)
    6. {
    7. char *p = (char *)args;
    8. while (1)
    9. {
    10. std::cout << "I am a new thread : " << p << ", pid : " << getpid() << std::endl;
    11. sleep(1);
    12. }
    13. return nullptr;
    14. }
    15. int main()
    16. {
    17. //已经有进程了
    18. pthread_t tid;
    19. pthread_create(&tid, nullptr, Threadroutine, (void *)"thread1");
    20. //主线程
    21. while (1)
    22. {
    23. std::cout << "I am a main thread, pid : " << getpid() << std::endl;
    24. sleep(1);
    25. }
    26. return 0;
    27. }

    首先确实有两个执行流在循环打印语句,并且它们的进程pid相同,但是它们的LWP(light weight process)不同,即它们是线程(在Linux中线程的底层是轻量级进程),所以OS在调度时看的是LWP,当然我们会发现有一个线程的LWP和PID是一样的,它就是主线程。(如果你看到乱序的打印也是正常的,因为OS如何调度两个线程是未知的)

    而由于线程共享同一个进程地址空间,所以线程间的共享资源很多,也更容易通信(不保证安全)

    1. #include
    2. #include
    3. #include
    4. int cnt = 0;
    5. void *Threadroutine(void *args)
    6. {
    7. char *p = (char *)args;
    8. while (1)
    9. {
    10. std::cout << "I am a new thread : " << p << ", pid : " << getpid() << " cnt:" << cnt << std::endl;
    11. cnt++;
    12. sleep(1);
    13. }
    14. return nullptr;
    15. }
    16. int main()
    17. {
    18. pthread_t tid;
    19. pthread_create(&tid, nullptr, Threadroutine, (void *)"thread1");
    20. sleep(1);
    21. pthread_t tid1;
    22. pthread_create(&tid1, nullptr, Threadroutine, (void *)"thread2");
    23. sleep(1);
    24. pthread_t tid2;
    25. pthread_create(&tid2, nullptr, Threadroutine, (void *)"thread3");
    26. sleep(1);
    27. while (1)
    28. {
    29. std::cout << "I am a main thread, pid : " << getpid() << " cnt:" << cnt << std::endl;
    30. sleep(1);
    31. }
    32. return 0;
    33. }

    注意:打印乱序是正常现象,因为Threadroutine是不可重入函数,但是我们重入了。但是这不妨碍我们能看到cnt在不断增加的,并且每个线程都能看到,也就是说cnt这个全局变量对于线程来说是共享的。

    如何理解线程更加轻量化???

    1、线程的创建更加简单

    2、线程的切换更加高效

    • 要修改的寄存器少了---因为线程中有很多数据是一样的,比如存放页表地址的寄存器就不用修改,因为它们共用一个页表
    • 不需要重新更新cache(缓存)---根据局部性原理,在执行某条语句之后,更有可能执行它的上下文中的代码,所以我们会提前将它附近的代码和数据加载到缓存(称为热数据),来提高CPU效率,对于线程来说这样的热数据大概率是有效的,而对于进程来说,则是基本无效的,需要重新加载

    (注意:这里谈论的线程切换是指在同一个进程中的线程的切换,不同进程的线程切换还是属于进程切换)

    二、进一步理解进程地址空间

    三、线程的优缺点+资源+异常

     1、优点

    • 创建一个新线程的代价要比创建一个新进程小得多
    • 与进程之间的切换相比,线程之间的切换需要操作系统做的工作要少很多
    • 线程占用的资源要比进程少很多
    • 能充分利用多处理器的可并行数量
    • 在等待慢速I/O操作结束的同时,程序可执行其他的计算任务
    • 计算密集型应用,为了能在多处理器系统上运行,将计算分解到多个线程中实现
    • I/O密集型应用,为了提高性能,将I/O操作重叠。线程可以同时等待不同的I/O操作

    2、缺点

    • 性能损失:一个很少被外部事件阻塞的计算密集型线程往往无法与共它线程共享同一个处理器。如果计算密集型线程的数量比可用的处理器多,那么可能会有较大的性能损失,这里的性能损失指的是增加了额外的同步和调度开销,而可用的资源不变。
    • 健壮性降低:编写多线程需要更全面更深入的考虑,在一个多线程程序里,因时间分配上的细微偏差或者因共享了不该共享的变量而造成不良影响的可能性是很大的,换句话说线程之间是缺乏保护的。
    • 缺乏访问控制:进程是访问控制的基本粒度,在一个线程中调用某些OS函数会对整个进程造成影响。
    • 编程难度提高:编写与调试一个多线程程序比单线程程序困难得多(要更加细节)

    3、资源

    线程共享进程数据,但也拥有自己的一部分数据:线程ID、硬件上下文、栈、errno、信号屏蔽字、调度优先级

    进程的多个线程共享同一地址空间,因此Text Segment、Data Segment都是共享的,如果定义一个函数,在各线程中都可以调用,如果定义一个全局变量,在各线程中都可以访问到,除此之外,各线程还共享以下进程资源和环境:文件描述符表、每种信号的处理方式(SIG_ IGN、SIG_ DFL或者自定义的信号处理函数)、当前工作目录、用户id和组id

    (注意:信号的pending位图、block位图都是各自私有的)
     

    4、线程异常

    • 单个线程如果出现除零,野指针问题导致线程崩溃,进程也会随着崩溃
    • 线程是进程的执行分支,线程出异常,就类似进程出异常,进而触发信号机制,终止进程,进程终止,该进程内的所有线程也就随即退出

    四、线程控制---相关函数接口介绍

    1、线程创建

    功能:创建一个新的线程
    参数:

    • thread:返回线程ID
    • attr:设置线程的属性,attr为NULL表示使用默认属性
    • start_routine:是个函数地址,线程启动后要执行的函数
    • arg:传给线程启动函数的参数

    返回值:成功返回0;失败返回错误码

    1. #include
    2. #include
    3. #include
    4. void* ThreadRoutine(void * args)
    5. {
    6. while(1)
    7. {
    8. std::cout << "I am a new thread" << std::endl;
    9. sleep(1);
    10. }
    11. }
    12. int main()
    13. {
    14. pthread_t tid;
    15. pthread_create(&tid,nullptr,ThreadRoutine,nullptr);
    16. while(1)
    17. {
    18. std::cout << "I am a main thread" << std::endl;
    19. sleep(1);
    20. }
    21. return 0;
    22. }

     

    1)给线程传参的问题

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. using func_t = std::function<void()>;
    9. class ThreadDate
    10. {
    11. public:
    12. std::string _name;
    13. u_int64_t _createtime;
    14. func_t _f;
    15. public:
    16. ThreadDate(std::string name, u_int64_t createtime, func_t f)
    17. : _name(name), _createtime(createtime), _f(f)
    18. {
    19. }
    20. };
    21. void Print()
    22. {
    23. std::cout << "我正在执行某个任务" << std::endl;
    24. }
    25. //函数的参数为void*,即可以传任意类型的指针,我们可以把结构体对象当参数传进去
    26. void *ThreadRoutine(void *args)
    27. {
    28. ThreadDate *ptd = static_cast(args);
    29. while (1)
    30. {
    31. std::cout << "new thread name: " << ptd->_name << " , create time: " << ptd->_createtime << std::endl;
    32. ptd->_f();
    33. sleep(1);
    34. }
    35. }
    36. int main()
    37. {
    38. std::vector<pthread_t> v;
    39. for (int i = 0; i < 5; i++)
    40. {
    41. char name[64] = {0};
    42. sprintf(name, "%s-%d", "thread", i);
    43. ThreadDate *p = new ThreadDate(name, (u_int64_t)time(nullptr), Print);
    44. pthread_t tid;
    45. pthread_create(&tid, nullptr, ThreadRoutine, (void *)p);
    46. v.push_back(tid);
    47. }
    48. sleep(3);
    49. std::cout << "thread id: ";
    50. for (auto x : v)
    51. {
    52. std::cout << x << " ";
    53. }
    54. std::cout << std::endl;
    55. while (1)
    56. {
    57. std::cout << "I am a main thread" << std::endl;
    58. sleep(1);
    59. }
    60. return 0;
    61. }

    我们确实能通过函数的参数将我们想要的数据(放在结构体对象中)传给线程,并且也可以传函数,同理该线程的返回值也是一样(这个后面会演示)

    打印出来的tid显然和LWP不相同,它具体是什么呢?(后面会说,这里只是抛出问题)。

    也可以通过上面这个函数获取线程自身的tid,注意不是LWP!!!

    2)线程异常问题

    显然在第四个线程出现异常,收到信号后,整个进程都退出了,也说明线程的健壮性比较差

    2、线程退出

    原型:void pthread_exit(void *value_ptr)

    功能:线程终止
    参数:

    • value_ptr:value_ptr不要指向一个局部变量。

    返回值:无返回值,跟进程一样,线程结束的时候无法返回到它的调用者(自身)

    1. #include
    2. #include
    3. #include
    4. void* ThreadRoutine(void* args)
    5. {
    6. int cnt = 5;
    7. while(cnt--)
    8. {
    9. std::cout << " I am a new thread " << std::endl;
    10. sleep(1);
    11. }
    12. pthread_exit(nullptr); // 终止线程
    13. // return nullptr; // 也可以终止线程
    14. // exit(1); // 注意:该函数是用来结束进程的!!!
    15. }
    16. int main()
    17. {
    18. pthread_t tid;
    19. pthread_create(&tid, nullptr, ThreadRoutine, nullptr);
    20. //...
    21. return 0;
    22. }

     我们也可以直接return,这样也是能终止线程的。

    3、线程等待

    线程退出默认也是需要被等待的(就像进程一样)

    • 线程退出,没有等待,会导致类似进程的僵尸问题
    • 线程退出,主线程也需要获取新线程的返回值

    原型:int pthread_join(pthread_t thread, void **value_ptr)

    功能:等待线程结束
    参数

    • thread:线程ID
    • value_ptr(输出型参数):它指向一个指针,该指针指向线程的返回值,可以接收任意类型的指针

    返回值:成功返回0,失败返回错误码

    1. #include
    2. #include
    3. #include
    4. void* ThreadRoutine(void* args)
    5. {
    6. int cnt = 5;
    7. while(cnt--)
    8. {
    9. std::cout << " I am a new thread " << std::endl;
    10. sleep(1);
    11. }
    12. pthread_exit((void*)"thread end"); //结束线程
    13. // return (void*)"thread end";
    14. }
    15. int main()
    16. {
    17. pthread_t tid;
    18. pthread_create(&tid, nullptr, ThreadRoutine, nullptr);
    19. void*ret = nullptr;
    20. int n = pthread_join(tid,&ret);
    21. std::cout << "main thread, n: " << n << std::endl;
    22. std::cout << "new thread return val: " << (char*)ret << std::endl;
    23. return 0;
    24. }

    和线程创建时传给线程的参数一样,这里的返回值可以是任意类型的指针(可以指向结构体,该结构体中可以存放任何你想通过线程得到的数据,这个就不演示了,类比线程创建即可)

    这里简单说明一下:为什么进程退出时既关心是否正常退出,又关心异常问题,但是线程出现异常我们并不关心?因为线程一旦异常,会导致进程整个挂掉,所以线程的异常就没必要关心了

    4、线程分离

    当主线程不关心线程的的返回结果时,我们可以将线程设置为分离状态,这样该线程结束后就会自动被OS回收,不需要主线程在等待了

    int pthread_detach(pthread_t thread)

    功能:分离线程

    参数:

    • thread:线程ID

    返回值:成功返回0,失败返回错误码

    1. #include
    2. #include
    3. #include
    4. void* ThreadRoutine(void* args)
    5. {
    6. // pthread_detach(pthread_self()); // 可以在线程中进行线程分离
    7. int cnt = 5;
    8. while(cnt--)
    9. {
    10. std::cout << " I am a new thread " << std::endl;
    11. sleep(1);
    12. }
    13. return nullptr;
    14. }
    15. int main()
    16. {
    17. pthread_t tid;
    18. pthread_create(&tid, nullptr, ThreadRoutine, nullptr);
    19. pthread_detach(tid);
    20. sleep(1);
    21. int n = pthread_join(tid,nullptr);
    22. std::cout << "main thread, n: " << n << std::endl;
    23. return 0;
    24. }

    显然线程等待失败,这里的线程分离,也可以在创建的线程中使用 (注意:线程分离后,出现异常还是会导致整个进程挂掉)

    5、线程取消

    原型:int pthread_cancel(pthread_t thread)

    功能:取消一个执行中的线程
    参数:

    • thread:线程ID

    返回值:成功返回0,失败返回错误码

    1. #include
    2. #include
    3. #include
    4. void* ThreadRoutine(void* args)
    5. {
    6. while(true)
    7. {
    8. std::cout << " I am a new thread " << std::endl;
    9. sleep(1);
    10. }
    11. return nullptr;
    12. }
    13. int main()
    14. {
    15. pthread_t tid;
    16. pthread_create(&tid, nullptr, ThreadRoutine, nullptr);
    17. // pthread_detach(tid);
    18. sleep(5);
    19. int n = pthread_cancel(tid);
    20. std::cout << "main thread, cancel return: " << n << std::endl;
    21. void*ret = nullptr;
    22. n = pthread_join(tid, &ret);
    23. std::cout << "main thread, join return: " << n << " ret: " << (long long)ret << std::endl;
    24. return 0;
    25. }

    (注意:如果线程在pthread_cancel之前终止,那么该函数调用失败,返回错误码) 

    thread线程以不同的方法终止,通过pthread_join得到的终止状态是不同的,总结如下
    1. 如果thread线程通过return返回,value_ ptr所指向的单元里存放的是thread线程函数的返回值。
    2. 如果thread线程被别的线程调用pthread_ cancel异常终掉,value_ ptr所指向的单元里存放的是常数PTHREAD_ CANCELED [#define PTHREAD_CANCELED ((void *) -1)]
    3. 如果thread线程是自己调用pthread_exit终止的,value_ptr所指向的单元里存放的是传给pthread_exit的参数
    4. 如果对thread线程的终止状态不感兴趣,可以传NULL给value_ ptr参数

    • 默认情况下,新创建的线程是joinable的,线程退出后,需要对其进行pthread_join操作,否则无法释放资源,从而造成系统泄漏
    • 如果不关心线程的返回值,join是一种负担,这个时候,我们可以告诉系统,当线程退出时,自动释放线程资源,即线程分离
    • 一个线程要么是joinable的,要么是分离的

    五、理解线程库

    在语言的角度:其实C++11中的线程库就是对原生线程库的封装,其他语句同理

    注意:__thread只能修饰内置类型,自定义类型不行,在C++11中可以用thread_local对自定义类型进行修饰

    六、模拟实现C++线程库(简易版)

    1. #pragma once
    2. #include
    3. #include
    4. #include
    5. #include
    6. using func_t = std::function<void()>; // 该函数类型可以按照需求改变
    7. class thread
    8. {
    9. public:
    10. thread(std::string name, func_t f)
    11. : _tid(0), _name(name), _isrunning(false), _fun(f)
    12. {
    13. }
    14. // 注意,如果是非静态成员,则会多一个this作为参数(c++语法)
    15. static void *ThreadRoutine(void *args)
    16. {
    17. thread *t = static_cast(args);
    18. t->_fun(); // 要想访问类成员,要传类对象
    19. return nullptr;
    20. }
    21. bool Start()
    22. {
    23. int n = pthread_create(&_tid, nullptr, ThreadRoutine, this);
    24. if (n == 0)
    25. {
    26. _isrunning = true;
    27. return true;
    28. }
    29. return false;
    30. }
    31. bool Join()
    32. {
    33. if (!_isrunning)
    34. return true;
    35. int n = pthread_join(_tid, nullptr);
    36. if (n == 0)
    37. {
    38. _isrunning = false;
    39. return true;
    40. }
    41. return false;
    42. }
    43. std::string getname()
    44. {
    45. return _name;
    46. }
    47. bool IsRunning()
    48. {
    49. return _isrunning;
    50. }
    51. ~thread()
    52. {
    53. }
    54. private:
    55. pthread_t _tid;
    56. std::string _name;
    57. bool _isrunning;
    58. func_t _fun;
    59. };
    60. //进阶---用模板
    61. template <class T>
    62. using func_t = std::function<void(T)>;
    63. template <class T>
    64. class thread
    65. {
    66. public:
    67. thread(std::string name, func_t f, T data)
    68. : _tid(0), _name(name), _isrunning(false), _fun(f),_data(data)
    69. {
    70. }
    71. // 注意,如果是非静态成员,则会多一个this作为参数(c++语法)
    72. static void *ThreadRoutine(void *args)
    73. {
    74. thread *t = static_cast(args);
    75. t->_fun(t->_data); // 要想访问对象,要传递对象
    76. return nullptr;
    77. }
    78. bool Start()
    79. {
    80. int n = pthread_create(&_tid, nullptr, ThreadRoutine, this);
    81. if (n == 0)
    82. {
    83. _isrunning = true;
    84. return true;
    85. }
    86. return false;
    87. }
    88. bool Join()
    89. {
    90. if (!_isrunning)
    91. return true;
    92. int n = pthread_join(_tid, nullptr);
    93. if (n == 0)
    94. {
    95. _isrunning = false;
    96. return true;
    97. }
    98. return false;
    99. }
    100. std::string getname()
    101. {
    102. return _name;
    103. }
    104. bool IsRunning()
    105. {
    106. return _isrunning;
    107. }
    108. ~thread()
    109. {
    110. }
    111. private:
    112. pthread_t _tid;
    113. std::string _name;
    114. bool _isrunning;
    115. func_t _fun;
    116. T _data;// 如果需要也可以加一个成员变量存储线程的结果
    117. };

  • 相关阅读:
    63基于matlab的生物地理的优化器(BBO)被用作多层感知器(MLP)的训练器。
    国家开放大学 模拟试题 训练
    [附源码]java毕业设计医院网上预约系统
    odoo启动-加载模块(load_modules)
    crontab定时任务是否执行
    java-php-python-ssm新城街道社区的健康档案管理平台计算机毕业设计
    C语言常识
    思辨:移动开发的未来在哪?
    Educational Codeforces Round 155 (Rated for Div. 2)
    时序预测 | MATLAB实现RBF径向基神经网络时间序列多步预测
  • 原文地址:https://blog.csdn.net/V_zjs/article/details/136450027