创建一个进程,需要先向操作系统注册一个进程控制块(PCB)task_strcut、mm_struct、页表、物理地址空间和进程地址空间通过页表建立映射关系。
如果在创建进程”进程时“,只创建task_struct,与原先的父进程共享进程地址空间、页表等。
CPU调度执行流的时候是通过task_struct进行调度。也就是说每一个task_struct就是一个执行流。这样的一个执行流就被称为一个线程。也可以看出同一个进程的内部的线程,共享数据和代码。
进程根据执行流的数量,可以分为**单执行流进程和多执行流进程。**一个进程内部可能有多个线(执行流)
进程的示意图
Linux系统中,CPU如何识别当前调度的task_struct是一个进程还是线程?
执行一个线程时,就是执行单执行流的调度。
**执行一个进程时,**执行多执行流调度
如果一款操作系统要支持真的线程,那么就需要对这些线程进行管理。比如说创建线程、终止线程、调度线程、切换线程、给线程分配资源、释放资源以及回收资源等等,搭建一套与进程平行的线程管理模块。
如果要支持线程一定会提高操作系统的设计复杂程度。在Linux设计者看来,描述线程TCB和进程的PCB是类似的,因此Linux并没有重新为线程设计数据结构,而是直接复用了进程控制块,所以我们说Linux中的所有执行流都叫做轻量级进程。
Linux如何支持创建线程?
Linux没有真正意义上的线程,因此也没有线程相关的系统调用。但是Linux提供了一个创建轻量级进程的接口vfork,可以通过该接口创建一个轻量级的进程模拟线程。
pid_t vfork(void);
vfork函数的作用:创建子进程,但是父子共享进程地址空间
**返回值:**和fork函数的返回值相同,给父进程返回子进程PID,给子进程返回0。
#include
#include
#include
#include
int main(){
int val=100;
int pid=vfork();
if(pid==0){ //子进程
val=200;
printf("child fork pid=%d,ppid=%d,val=%d\n",getpid(),getppid(),val);
exit(0);
}
sleep(2);
printf("father fork pid=%d,ppid=%d,val=%d\n",getpid(),getppid(),val);
return 0;
}
父子进程没有发生写时拷贝,说明了vfork创建的进程共享进程地址空间。
Linux的原生线程库pthread
为了程序员方便进行并发编程,Linux为用户提供了一个原生的线程库pthread。可以调用该动态库中的接口实现多线程编程。
#include
#include
#include
#include
void thread_fun(int arg){
int cnt=5;
while (cnt--)
{
std::cout<<"我是新线程,arg="<<arg<<std::endl;
sleep(1);
}
}
int main(){
std::thread t(thread_fun,10);
t.join();
return 0;
}
32位的平台下,一共有232个字节需要管理,也就意味着一共有232个地址需要通过页表映射管理
如果只是通过一张页表进行映射,假设页表的每一个条目(条目除了进程地址空间、物理地址还有一些访问权限等)为10字节,那么一共需要10*2^32个字节==40GB的空间对地址映射进行管理。
而在32位平台下我们的内存可能一共就只有4GB,也就是说我们根本无法存储这样的一张页表。
操作系统下的页表并不是一张简单的页表,而是多级页表结构。
一个32位的虚拟地址不是直接转化,而是按照10+10+12三部分进行转化。(后面会说明为什么分10+10+12三部分转化)
32位虚拟地址的前10位为一级页表的序号。
32位虚拟地址的中间10位位二级页表的序号,映射结果为物理内存单元页的起始地址。
32位虚拟地址的最后12位为页内偏移量。
物理内存的管理方式
1.物理内存按照页为管理单位进行管理。当内存和磁盘进行数据交换时也就是以4KB大小为单位进行加载和保存的。
2.4KB实际上就是212个字节,而访问内存的基本大小是1字节,因此一个页中就有212个地址。
3.进程地址空间的中间10位映射到物理页的起始地址。而最后的12个比特位作为页内偏移量,从页的起始地址处开始向后进行偏移,从而找到物理内存中某一个对应字节数据。
二级页表结构图
所有映射过程,都是由MMU(MemoryManagementUnit)这个硬件完成的,该硬件是集成在CPU内的。页表是一种软件映射,MMU是一种硬件映射,所以计算机进行虚拟地址到物理地址的转化采用的是软硬件结合的方式。
在32位平台上采用的是二级页表机制,而在64位平台下采用的是多级页表机制。
优点
缺点
**性能损失:**一个很少被外部事件阻塞的计算密集型线程往往无法与共它线程共享同一个处理器。如果计算密集型线程的数量比可用的处理器多,那么可能会有较大的性能损失,这里的性能损失指的是增加了额外的同步和调度开销,而可用的资源不变。
**健壮性降低:**编写多线程需要更全面更深入的考虑,在一个多线程程序里,因时间分配上的细微偏差或者因共享了不该共享的变量而造成不良影响的可能性是很大的,换句话说线程之间是缺乏保护的。
**缺乏访问控制:**进程是访问控制的基本粒度,在一个线程中调用某些OS函数会对整个进程造成影响。
编程难度提高:多线程程序比单线程程序更难编写
线程与进程
进程中线程共享的数据有:
进程中定义的函数、全局变量、文件描述符、每种信号的处理方式、当前工作目录、用户ID和组ID
进程和线程的关系图
POSIX线程库
pthread库是Linux提供给用户的应用层原生线程库:
错误检查:
功能:创建一个新的线程。
函数原型:
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void*), void *arg);
参数说明:
thread:传入类型参数,返回线程ID
attr:设置线程的属性,attr为NULL表示使用默认属性
start_routine:是个函数指针,线程启动后要执行的函数
arg:传给线程启动函数的参数
返回值说明:
成功返回0;失败返回错误码。
实例
void* routine(void* arg){
char* msg=(char*)arg;
while(1){
std::cout<<"I am "<<msg<<std::endl;
sleep(1);
}
}
int main(){
pthread_t tid;
pthread_create(&tid,nullptr,routine,(void*)"routine1");
while (1)
{
std::cout<<"I am main thread"<<std::endl;
sleep(1);
}
return 0;
}
使用ps ajx指令查看当前进程信息,虽然我们运行了俩个线程,但是只能查看到一个进程信息,因为这两个线程属于同一个进程。
使用ps -aL指令,可以查看当前的轻量级进程。
可以看到俩个线程的进程PID相同,说明两个轻量级进程属于同一个进程;LWP(Light Weight Process)表示轻量级进程ID,在Linux中LWP与应用层线程一一对应。
在 在Linux中,应用层的线程与内核的LWP是一一对应的,实际上操作系统调度的时候采用的是LWP,而并非PID。只不过在单执行流进程中,PID和LWP是相等的。
验证主线程创建的新线程属于同一个进程
使用getpid()和getppid()函数获取PID和PPID,对比各线程的PID和PPID是否相等。
#include
#include
#include
void* routine(void* arg){
char* msg=(char*)arg;
while(1){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<"ppid:"<<getppid()<<std::endl;
sleep(1);
}
}
int main(){
pthread_t tid[4];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
while (1)
{
std::cout<<"I am main thread...pid:"<<getpid()<<"ppid:"<<getppid()<<std::endl;
sleep(1);
}
return 0;
}
主线程和新线程的PID和PPID完全相同,说明所有线程属于是同一个进程。
获取线程ID
获取线程ID有两种方式,一种是在创建线程时传入的参数,第二种是使用pthread_self()获取当前线程id
void* routine(void* arg){
char* msg=(char*)arg;
while(1){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()<<" tid:"<<pthread_self()<<std::endl;
sleep(1);
}
}
int main(){
pthread_t tid[4];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
while (1)
{
std::cout<<"I am main thread...pid:"<<getpid()<<" ppid:"<<getppid()<<" tid:"<<pthread_self()<<std::endl;
sleep(1);
}
return 0;
}
用pthread_self函数获得的线程ID与内核的LWP的值是不相等的,pthread_self函数获得的是用户级原生线程库的线程ID,而LWP是内核的轻量级进程ID,它们之间是一对一的关系。
获取LWP
使用syscalll和gettid()可以获取轻量级线程ID
#include
#include
#include
#include
void* routine(void* arg){
char* msg=(char*)arg;
while(1){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
}
int main(){
pthread_t tid[4];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
while (1)
{
std::cout<<"I am main thread...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
return 0;
}
每一个线程拥有一个LWP,内核调度时通过识别LWP对每一个执行流进行调度。
一个线程在创建后,需要像进程一样被等待回收线程的资源。如果主线程不对新线程进行等待,那么这个新线程的资源也是不会被回收的。会出现内存泄漏的问题。
函数原型:
int pthread_join(pthread_t thread, void **retval);
参数:
返回值:等待成功返回0,失败-1
注意:
void* routine(void* arg){
char* msg=(char*)arg;
int cnt=5;
while(cnt--){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
return (void*)10;
}
int main(){
pthread_t tid[5];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
for(int i=0;i<5;i++){
void* ret=nullptr;
pthread_join(tid[i],&ret);
std::cout<<"thread "<<tid[i]<<" quit..."<<"exitcode: "<<(long)ret<<std::endl; //需要使用long类型,在64位机器下指针类型为8字节
}
return 0;
}
为什么线程退出只能拿到退出码?
如果我们等待的是一个进程,那么当这个进程退出时,我们可以通过wait函数或是waitpid函数的输出型参数status,获取到退出进程的退出码、退出信号以及core dump标志。
为什么线程只能拿到退出码?
线程退出一共只有三种情况:
由于线程是进程的一个执行流,当进程中的一共线程出现异常退出时,那么整个进程也会因此而崩溃,此时我们根本没办法执行pthread_join函数,因为整个进程已经退出了。
比如下面一个线程发生除0错误
#include
#include
#include
#include
void* routine(void* arg){
char* msg=(char*)arg;
while(1){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
return (void*)10;
}
void* err_routine(void* arg){
char* msg=(char*)arg;
int cnt=5;
while (cnt--)
{
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
int a=0;
int num=10/a;
while(1){
}
}
int main(){
pthread_t tid[5];
pthread_t ttid;
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
pthread_create(&ttid,nullptr,err_routine,(void*)"thread_err");
for(int i=0;i<5;i++){
void* ret=nullptr;
pthread_join(tid[i],&ret);
std::cout<<"thread "<<tid[i]<<" quit..."<<"exitcode: "<<(long)ret<<std::endl;
}
pthread_join(ttid,nullptr);
return 0;
}
pthread_join函数只能获取到线程正常退出时的退出码,用于判断线程的运行结果是否正确。
如果需要只终止某个线程而不终止整个进程,可以有三种方法:
pthread_exit函数
功能:线程终止
原型
void pthread_exit(void *value_ptr);
参数
value_ptr:value_ptr不要指向一个局部变量。
返回值:无返回值,跟进程一样,线程结束的时候无法返回到它的调用者(自身)
pthreaad_cancel函数
功能:取消一个执行中的线程
原型
int pthread_cancel(pthread_t thread);
参数
thread:线程ID
返回值:成功返回0;失败返回错误码
下面我们使用pthread_exit()退出线程,线程的退出码设置为555
void* routine(void* arg){
char* msg=(char*)arg;
int cnt=5;
while(cnt--){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
pthread_exit((void*)555);
}
int main(){
pthread_t tid[5];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
for(int i=0;i<5;i++){
void* ret=nullptr;
pthread_join(tid[i],&ret);
std::cout<<"thread "<<tid[i]<<" quit..."<<"exitcode: "<<(long)ret<<std::endl;
}
return 0;
}
下面主线程调用pthread_canacel()取消创建的线程
#include
#include
#include
#include
void* routine(void* arg){
char* msg=(char*)arg;
while(1){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
return (void*)555;
}
int main(){
pthread_t tid[5];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
}
int cnt=5;
while(cnt--){
sleep(1);
}
for(int i=0;i<5;i++){
pthread_cancel(tid[i]);
}
for(int i=0;i<5;i++){
void* ret=nullptr;
pthread_join(tid[i],&ret);
std::cout<<"thread "<<tid[i]<<" quit..."<<"exitcode: "<<(long)ret<<std::endl;
}
return 0;
}
也可以使用新创建的线程取消主线程,由于主线程的轻量级进程ID与进程ID相等,因此结果是整个进程被取消。
线程分离状态,指定该状态,线程主动与主控线程断开联系。线程结束后,其退出状态不由其他线程获取,而由自己主动释放,同时资源也被系统回收。常用于网络,多线程服务器。
int pthread_detach(pthread_t thread);
**实例:**新线程从主线程分离,5秒后线程退出。
#include
#include
#include
#include
void* routine(void* arg){
char* msg=(char*)arg;
int cnt=5;
while(cnt--){
std::cout<<"I am "<<msg<<"...pid:"<<getpid()<<" ppid:"<<getppid()
<<" tid:"<<pthread_self()<<" LWP:"<<::syscall(SYS_gettid)<<std::endl;
sleep(1);
}
std::cout<<"thread "<<msg<<" quit..."<<std::endl;
pthread_exit((void*)555);
}
int main(){
pthread_t tid[5];
for(int i=0;i<5;i++){
char* buf=(char*)malloc(64);
sprintf(buf,"thread %d",i);
pthread_create(&tid[i],nullptr,routine,buf);
pthread_detach(tid[i]);
}
while (1)
{
std::cout<<"I am main thread..."<<std::endl;
}
return 0;
}
下面我们用地址的方式打印线程ID
#include
#include
#include
#include
void* routine(void* arg){
pthread_cancel(pthread_self());
}
int main(){
pthread_t tid[5];
for(int i=0;i<5;i++){
pthread_create(&tid[i],nullptr,routine,nullptr);
}
for(int i=0;i<5;i++){
printf("%p\n",tid[i]);
}
sleep(1);
for(int i=0;i<5;i++){
pthread_join(tid[i],nullptr);
}
return 0;
}
线程pthread_t本质上就是一个地址
线程的实现并不是全部由OS实现,**而是OS提供执行流,具体的线程结构是由链接的pthread库来提供管理;**同时pthread库可以提供多个线程,因此pthread需要对线程结构进行管理。
线程结构图
线程局部存储
进程中的所有线程共享全局变量
int global=100;
void* routine(void* arg){
global=200;
printf("global:%d\n",global);
pthread_cancel(pthread_self());
}
int main(){
pthread_t tid;
pthread_create(&tid,nullptr,routine,nullptr);
sleep(2);
printf("global:%d\n",global);
pthread_join(tid,nullptr);
return 0;
}
使用__thread修饰变量,可以做到每个线程各拥有一份变量
__thread int global=100;
void* routine(void* arg){
global=200;
printf("global:%d\n",global);
pthread_cancel(pthread_self());
}
int main(){
pthread_t tid;
pthread_create(&tid,nullptr,routine,nullptr);
sleep(2);
printf("global:%d\n",global);
pthread_join(tid,nullptr);
return 0;
}