第14章 多线程编程
线程与进程
线程是轻量级的进程, 想要理解线程的关键, 首先要理解线程和进程之间的区别.
一个进程在创建之初其实就可以看作是一个主线程, 其创建出的线程其实和其本质无很大差别, 其实就多了一个线程共享资源罢了, 我们要明晰的是一个进程创建的不同线程之间, 什么是共享的, 什么是独立的.
线程间共享的 :
- 进程地址空间中的代码段, 数据段, 堆
- 文件描述符
- 信号处理
- 环境变量
- 进程id
线程间独立的 :
- 线程id
- 进程地址空间中的栈
- 寄存器状态
- 信号掩码(会继承但独立)
- 线程局部存储(TLS)
- errno
只有理解了这些, 我们才可以分析出线程相比于进程, 我们还需要关心什么, 例如 :
- 数据段 + 文件描述符共享 -> 需要锁来限制共享内存的访问
- 信号处理共享 + 信号掩码独立 -> 可以创建一个线程单独管理信号.
线程创建及使用
1 2 3 4 5
| #include<pthread.h> typedef unsigned long int pthread_t; int pthread_create(pthread_t*thread,const pthread_attr_t*attr,void*(*start_routine)(void*),void*arg); void pthread_exit(void*retval); int pthread_join(pthread_t thread,void**retval);
|
线程同步(线程间通信)
和线程同步相关的要点也有三种 :
POSIX信号量
进程间通信中已经将了System V信号量l, POSIX信号量的理念和使用方法也相似, 还是可以理解为一种可计数的高级互斥锁.
POSIX信号量的使用会更加方便一些 :
1 2 3 4 5 6
| #include<semaphore.h> int sem_init(sem_t*sem,int pshared,unsigned int value); int sem_destroy(sem_t*sem); int sem_wait(sem_t*sem); int sem_trywait(sem_t*sem); int sem_post(sem_t*sem);
|
- sem : 就是标定唯一的信号量的一个标准, 直接创建即可
sem_t sem;
;
- pshared : 用于指定信号量类型, 如果为0代表是进程局部的信号量, 不为0可以实现进程间共享, 不过这个信号量一般用于线程间通信, 所以用0即可.
- value : 设置信号量的值, 和System V中semctl的作用一致.
互斥锁
这个就是常用的普通锁, 只能被一个线程持有.
1 2 3 4 5 6
| #include<pthread.h> int pthread_mutex_init(pthread_mutex_t*mutex,const pthread_mutexattr_t*mutexattr); int pthread_mutex_destroy(pthread_mutex_t*mutex); int pthread_mutex_lock(pthread_mutex_t*mutex); int pthread_mutex_trylock(pthread_mutex_t*mutex); int pthread_mutex_unlock(pthread_mutex_t*mutex);
|
可以用宏的方式替代init :
1
| pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
init的第二个参数用于设置互斥锁属性, 一般是NULL.
条件变量
1 2 3 4 5 6
| #include<pthread.h> int pthread_cond_init(pthread_cond_t*cond,const pthread_condattr_t*cond_attr); int pthread_cond_destroy(pthread_cond_t*cond); int pthread_cond_broadcast(pthread_cond_t*cond); int pthread_cond_signal(pthread_cond_t*cond); int pthread_cond_wait(pthread_cond_t*cond,pthread_mutex_t*mutex);
|
这个名称起的比较晦涩, 但是确实是和”条件”有关, 这个东西是和互斥锁绑定使用的, 你可以理解为互斥锁只负责确保当前只有一个线程可以持有锁, 也就是只用一个线程可以访问共享资源. 而条件变量是在确保这个共享资源属于可用状态, 可用状态的判断是靠条件实现的, 更具体的说就是通过if判断是否触发pthread_cond_wait
函数.
以生产者消费者模型为例, 生产者将产物存入共享内存中, 消费者从共享内存中取出产物, 那么互斥锁可以保证同时只能由一个生产者或消费者访问共享内存,
- 但是如果共享内存满了, 生产者再去生产就是浪费,
- 如果内存为空, 消费者去取也是徒劳.
这时条件变量就可以发挥作用 :
- 当共享内存满了, 可以将生产者挂起, 直到共享内存有产物被取走为止,
- 当共享内存为空, 可以将消费者挂起, 直到共享内存不为空为止.
函数使用
函数使用和互斥锁相似, init的第二个参数还是设置为NULL就行, 并且也可以用下面的代码替代 :
1
| pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
|
- 我们通过条件判断触发pthread_cond_wait, 这个函数会将线程挂起, 并且释放当前持有的锁.
- 在我们认为可以满足条件的地方触发pthread_cond_signal, 这个函数会选择一个挂起的线程并唤醒他, 被唤醒的线程会重新持有互斥锁并且继续执行pthread_cond_wait后面的代码.
CS模型代码案例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| #include <pthread.h> #include <stdio.h> #include <unistd.h>
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t cond_var = PTHREAD_COND_INITIALIZER; int shared_data = 0;
void* producer(void* arg) { pthread_mutex_lock(&mutex); while (shared_data != 0) { pthread_cond_wait(&cond_var, &mutex); } shared_data = 1; printf("生产者生产数据: %d\n", shared_data); pthread_cond_signal(&cond_var); pthread_mutex_unlock(&mutex); return NULL; }
void* consumer(void* arg) { pthread_mutex_lock(&mutex); while (shared_data == 0) { pthread_cond_wait(&cond_var, &mutex); } shared_data = 0; printf("消费者消费数据: %d\n", shared_data); pthread_cond_signal(&cond_var); pthread_mutex_unlock(&mutex); return NULL; }
int main() { pthread_t producer_thread, consumer_thread;
pthread_create(&producer_thread, NULL, producer, NULL); pthread_create(&consumer_thread, NULL, consumer, NULL);
pthread_join(producer_thread, NULL); pthread_join(consumer_thread, NULL);
pthread_mutex_destroy(&mutex); pthread_cond_destroy(&cond_var); return 0; }
|
线程同步机制包装类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
| #ifndef LOCKER_H #define LOCKER_H #include<exception> #include<pthread.h> #include<semaphore.h>
class sem { public: sem() { if(sem_init(&m_sem,0,0)!=0) { throw std::exception(); } }
~sem() { sem_destroy(&m_sem); }
bool wait() { return sem_wait(&m_sem)==0; }
bool post() { return sem_post(&m_sem)==0; }
private: sem_t m_sem; };
class locker { public: locker() { if(pthread_mutex_init(&m_mutex,NULL)!=0) { throw std::exception(); } }
~locker() { pthread_mutex_destroy(&m_mutex); }
bool lock() { return pthread_mutex_lock(&m_mutex)==0; }
bool unlock() { return pthread_mutex_unlock(&m_mutex)==0; }
private: pthread_mutex_t m_mutex; };
class cond { public: cond() { if(pthread_mutex_init(&m_mutex,NULL)!=0) { throw std::exception(); } if(pthread_cond_init(&m_cond,NULL)!=0) { pthread_mutex_destroy(&m_mutex); throw std::exception(); } }
~cond() { pthread_mutex_destroy(&m_mutex); pthread_cond_destroy(&m_cond); }
bool wait() { int ret=0; pthread_mutex_lock(&m_mutex); ret=pthread_cond_wait(&m_cond,&m_mutex); pthread_mutex_unlock(&m_mutex); return ret==0; }
bool signal() { return pthread_cond_signal(&m_cond)==0; }
private: pthread_mutex_t m_mutex; pthread_cond_t m_cond; };
#endif
|
不可重入函数
不可重入函数不能在多线程环境下使用, 因为其一般会使用到静态变量, 比如inet_ntoa等.
线程和信号
我们在上文已经知道线程之间信号处理共享并且信号掩码会继承但独立, 那么我们就可以设置一个单独的信号处理线程.
相关函数如下 :
1 2 3 4
| #include<pthread.h> #include<signal.h> int pthread_sigmask(int how,const sigset_t*newmask,sigset_t*oldmask); int sigwait(const sigset_t*set,int*sig);
|
构建流程如下 :
- 在主线程构建出其他子线程之前就调用pthread_sigmask来设置好信号掩码,所有新创建的子线程都将自动继承这个信号掩码.
- 在信号处理线程中调用sigwait来等待信号并处理之.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| #include<pthread.h> #include<stdio.h> #include<stdlib.h> #include<unistd.h> #include<signal.h> #include<errno.h>
#define handle_error_en(en,msg) do{errno=en;perror(msg);exit(EXIT_FAILURE);}while(0)
static void* sig_thread(void* arg) { sigset_t* set = (sigset_t*)arg; int s, sig; for(;;) { s = sigwait(set, &sig); if(s != 0) handle_error_en(s, "sigwait"); printf("Signal handling thread got signal%d\n", sig); } }
int main(int argc, char* argv[]) { pthread_t thread; sigset_t set; int s; sigemptyset(&set); sigaddset(&set, SIGQUIT); sigaddset(&set, SIGUSR1); s = pthread_sigmask(SIG_BLOCK, &set, NULL); if(s != 0) handle_error_en(s, "pthread_sigmask"); s = pthread_create(&thread, NULL, &sig_thread, (void*)&set); if(s != 0) handle_error_en(s, "pthread_create"); pause(); }
|
线程局部存储(TLS)
线程局部存储(TLS)是一种允许线程拥有独立数据的技术。这意味着每个线程都可以访问同名变量的不同实例,而这些变量在不同线程中不会互相干扰。TLS 在多线程环境中提供了一种为每个线程分配私有存储空间的机制。
简单来说可以理解为 :
- TLS中的数据像线程的私有全局变量, 避免在各种函数间频繁传入常用的数据降低效率.
在 POSIX 系统中,如果你使用 pthread_key_create()
来创建线程局部存储(TLS)键并且关联某些数据,那么你还需要提供一个销毁函数,这个销毁函数会在线程退出时自动调用,用来释放线程局部存储的数据。
销毁过程:
- 在
pthread_key_create()
时,你可以指定一个销毁函数(destructor),这个函数会在线程退出时被调用。
pthread_key_delete()
用于显式地删除一个 TLS 键,销毁相关的资源。
浅谈线程设计的初衷
线程设计的初衷就是在于和多核CPU搭配实现同时并行处理多个任务, 我们可以简单理解线程的合理数量应当和CUP核数相当, 数量太少显示不出线程的优势, 数量太多其额外开销其实会非常多并且还吃力不讨好.