15-LINUX--线程的创建与同步

news2025/1/11 0:12:02

一.线程

1.线程的概念

    线程是进程内部的一条执行序列或执行路径,一个进程可以包含多条线程。

2.线程的三种实现方式

◼ 内核级线程:由内核创建,创建开销大,内核能感知到线程的存在
◼ 用户级线程:线程的创建有用户空间的线程库完成;内核不知道线程的存在
组合级线程:兼顾以上两者的优点,
区别:两个处理器,用户级线程在内核上无法并行处理,只能交替执行;内核级可以同时执行;组合技在不同的空间采用不同的处理方式

线程同步的方法:信号量,互斥锁,条件变量,读写锁

Ps -elf 查看线程ID

Linux 中线程的实现:

Linux 实现线程的机制非常独特。从内核的角度来说,它并没有线程这个概念。Linux 把
所有的线程都当做进程来实现。内核并没有准备特别的调度算法或是定义特别的数据结构来
表征线程。相反,线程仅仅被视为一个与其他进程共享某些资源的进程。每个线程都拥有唯
一隶属于自己的 task_struct,所以在内核中,它看起来就像是一个普通的进程(只是线程和
其他一些进程共享某些资源,如地址空间)。

3.进程与线程的区别

        ◼ 进程是资源分配的最小单位,线程是 CPU 调度的最小单位
        ◼ 进程有自己的独立地址空间,线程共享进程中的地址空间
        ◼ 进程的创建消耗资源大,线程的创建相对较小
        ◼ 进程的切换开销大,线程的切换开销相对较小

二.线程使用

1.线程库

 #include <pthread.h>

 /*
     pthread_create()用于创建线程
     thread: 接收创建的线程的 ID
     attr: 指定线程的属性
     start_routine: 指定线程函数
     arg: 给线程函数传递的参数
     成功返回 0, 失败返回错误码
 */
 int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
 void *(*start_routine) (void *), void *arg);13.
 /*
     pthread_exit()退出线程
     retval:指定退出信息
 */
 int pthread_exit(void *retval);

 /*
     pthread_join()等待 thread 指定的线程退出,线程未退出时,该方法阻塞
     retval:接收 thread 线程退出时,指定的退出信息
*/
 int pthread_join(pthread_t thread, void **retval);

多线程代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include <pthread.h>

 void * pthread_fun(void *arg)
 {
     int i = 0;
     for(; i < 5; ++i)
     {
         sleep(1);
     printf("fun thread running\n");
    }

     pthread_exit("fun over");
 }

 int main()
 {
     pthread_t tid;
     int res = pthread_create(&tid, NULL, pthread_fun, NULL);
     assert(res == 0);

     int i = 0;
     for(; i < 5; ++i)
     {
         sleep(1);
         printf("main thread running\n");
    }

     char *s = NULL;
     pthread_join(tid, (void **)&s);

     printf("s = %s\n", s);
     exit(0);
 }

三.线程同步

       线程同步指的是当一个线程在对某个临界资源进行操作时,其他线程都不可以对这个资
源进行操作,直到该线程完成操作,其他线程才能操作,也就是协同步调,让线程按预定的
先后次序进行运行。 线程同步的方法有四种:互斥锁、信号量、条件变量、读写锁。

1.互斥锁

#include <pthread.h>

int pthread_mutex_init(pthread_mutex_t *mutex, pthread_mutexattr_t *attr);//初始化锁

int pthread_mutex_lock(pthread_mutex_t *mutex);//上锁,其他线程无法使用

int pthread_mutex_unlock(pthread_mutex_t *mutex);//开锁

int pthread_mutex_destroy(pthread_mutex_t *mutex);//销毁锁
为什么线程需要同步和互斥的操作?
因为线程引入共享了进程的地址空间,导致了一个线程操作数据时候,极其容易影响到其他线程的情况;对其他线程造成不可控因素,或引起异常,逻辑结果不正确的情况;这也是线程不安全的原因!
        重点概念:
        示例代码如下,主线程和函数线程模拟访问打印机,主线程输出第一个字符‘a’表示开
始使用打印机,输出第二个字符‘a’表示结束使用,函数线程操作与主线程相同。(由于打
印机同一时刻只能被一个线程使用,所以输出结果不应该出现 abab)
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
#include<semaphore.h>

//sem_t sem;
pthread_mutex_t mutex;
void* fun1(void* arg)
{
        for(int i=0;i<5;i++)
        {
                //sem_wait(&sem);
                pthread_mutex_lock(&mutex);
                printf("A");
                fflush(stdout);
                int n=rand()%3;
                sleep(n);
                printf("A");
                fflush(stdout);
                //sem_post(&sem);
                pthread_mutex_unlock(&mutex);
                n=rand()%3;
                sleep(n);
        }
}
void* fun2(void* arg)
{
        for(int i=0;i<5;i++)
        {
                //sem_wait(&sem);
                pthread_mutex_lock(&mutex);
                printf("B");
                fflush(stdout);
                int n=rand()%3;
                sleep(n);
                printf("B");
                fflush(stdout);
                //sem_post(&sem);
                pthread_mutex_unlock(&mutex);
                n=rand()%3;
                sleep(n);
        }

}
int main()
{

        //sem_init(&sem,0,1);
        pthread_mutex_init(&mutex,NULL);
        pthread_t id1,id2;
        pthread_create(&id1,NULL,fun1,NULL);
        pthread_create(&id2,NULL,fun2,NULL);
        pthread_join(id1,NULL);
        pthread_join(id2,NULL);

        //sem_destroy(&sem);
        pthread_mutex_destroy(&mutex);
        exit(0);
}

     

2.信号量

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <unistd.h>
#include <pthread.h>
#include <semaphore.h>
#include <fcntl.h>

 char buff[128] = {0};
 sem_t sem1;
 sem_t sem2;

void* PthreadFun(void *arg)
{
     int fd = open("a.txt", O_RDWR | O_CREAT, 0664);
     assert(fd != -1);

 //函数线程完成将用户输入的数据存储到文件中
     while(1)
     {
         sem_wait(&sem2);
         if(strncmp(buff, "end", 3) == 0)
         {
             break;
         }

         write(fd, buff, strlen(buff));

         memset(buff, 0, 128);
         sem_post(&sem1);
     }
     sem_destroy(&sem1);
     sem_destroy(&sem2);
 }

 int main()
 {
     sem_init(&sem1, 0, 1);
     sem_init(&sem2, 0, 0);

     pthread_t id;
     int res = pthread_create(&id, NULL, PthreadFun, NULL);
     assert(res == 0);

 //主线程完成获取用户数据的数据,并存储在全局数组 buff 中
    while(1)
     {
         sem_wait(&sem1);

         printf("please input data: ");
         fflush(stdout);

         fgets(buff, 128, stdin);
         buff[strlen(buff) - 1] = 0;

        sem_post(&sem2);

         if(strncmp(buff, "end", 3) == 0)
         {
             break;
        }
         }

     pthread_exit(NULL);
 }

3.条件变量

条件变量是利用线程间共享的全局变量进行同步的一种机制。
主要包括两个动作:一个线程等待”条件变量的条件成立”而挂起;另一个线程使”条件成立”(给出条件成立信号)。
为了防止竞争,条件变量的使用总是和一个互斥锁结合在一起。
条件变量类型为 pthread_cond_t。

条件变量接口

pthread_cond_init()       //初始化
pthread_cond_wait()       //等待将信息存入并等待达到唤醒条件
pthread_cond_signal()     //只唤醒一个
pthread_cond_broadcast()  //唤醒所以有的线程
条件变量有什么用

使用条件变量可以以原子方式阻塞线程,直到某个特定条件为真为止。条件变量始终与互斥锁一起使用,对条件的测试是在互斥锁(互斥)的保护下进行的

如果条件为假,线程通常会基于条件变量阻塞,并以原子方式释放等待条件变化的互斥锁。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>

pthread_cond_t cond;
pthread_mutex_t mutex;
void* funa(void* arg)
{
        char* s =(char*)arg;
        while(1)
        {
                pthread_mutex_lock(&mutex);
                pthread_cond_wait(&cond,&mutex);//添加到条件变量的等待队列,阻塞
                pthread_mutex_unlock(&mutex);
                if(strncmp(s,"end",3)==0)
                {
                        break;
                }

                printf("funa:%s\n",s);
        }
}
void* funb(void* arg)
{
        char* s =(char*)arg;
        while(1)
        {
                pthread_mutex_lock(&mutex);
                pthread_cond_wait(&cond,&mutex);//添加到条件变量的等待队列,阻塞
                pthread_mutex_unlock(&mutex);
                if(strncmp(s,"end",3)==0)
                {
                        break;
                }

                printf("funb:%s\n",s);
        }

}
int main()
{
        pthread_mutex_init(&mutex,NULL);
        pthread_cond_init(&cond,NULL);

        pthread_t id1,id2;
        char buff[128]={0};
        pthread_create(&id1,NULL,funa,buff);
        pthread_create(&id2,NULL,funb,buff);

        while(1)
        {
                char tmp[128]={0};
                fgets(tmp,128,stdin);

                strcpy(buff,tmp);
                if(strncmp(tmp,"end",3)==0)
                {
                        pthread_mutex_lock(&mutex);
                        pthread_cond_broadcast(&cond);//唤醒所有线程
                        pthread_mutex_unlock(&mutex);
                        break;
                }
                else
                {
                        pthread_mutex_lock(&mutex);
                        pthread_cond_signal(&cond);//唤醒一个
                        pthread_mutex_unlock(&mutex);
                }
        }
        pthread_join(id1,NULL);
        pthread_join(id2,NULL);
        pthread_mutex_destroy(&mutex);
        pthread_cond_destroy(&cond);

        exit(0);
}
             

4.读写锁

读写锁:是一对锁,分为读锁和写锁,允许多个线程同时获取读写锁,但再通过一时间,只允许一个线程获得写锁,或者可以由多个线程获得读锁

接口:

#include <pthread.h>

 int pthread_rwlock_init(pthread_rwlock_t *rwlock, pthread_rwlockattr_t *attr);

 int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock);

 int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock);

 int pthread_rwlock_unlock(pthread_rwlock_t *rwlock);

 int pthread_rwlock_destroy(pthread_rwlock_t *rwlock);

代码示例

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>

pthread_rwlock_t lock;

void* fun_r1(void* arg)
{
        for(int i=0;i<10;i++)
        {
                pthread_rwlock_rdlock(&lock);
                printf("fun r1 start\n");
                int n=rand()%3;
                sleep(n);
                printf("fun r1 end\n");
                pthread_rwlock_unlock(&lock);
                n=rand()%3;
                sleep(n);
        }
}

void* fun_r2(void* arg)
{
        for(int i=0;i<10;i++)
        {
                pthread_rwlock_rdlock(&lock);
                printf("fun r2 start\n");
                int n=rand()%3;
                sleep(n);
                printf("fun r2 end\n");
                pthread_rwlock_unlock(&lock);
                n=rand()%3;
                sleep(n);
        }

}

void* fun_w(void* arg)
{
        for(int i=0;i<10;i++)
        {
                pthread_rwlock_wrlock(&lock);
                printf(" fun w start\n");
                int n=rand()%3;
                sleep(n);
                printf(" fun w end\n");
                pthread_rwlock_wrlock(&lock);
                n = rand()%3;
                sleep(n);
        }
}

int main()
{
        pthread_rwlock_init(&lock,NULL);
        pthread_t id1,id2,id3;
        pthread_create(&id1,NULL,fun_r1,NULL);
        pthread_create(&id2,NULL,fun_r2,NULL);
        pthread_create(&id3,NULL,fun_w,NULL);

        pthread_join(id1,NULL);
        pthread_join(id2,NULL);
        pthread_join(id3,NULL);

        pthread_rwlock_destroy(&lock);

        exit(0);
}
      

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1656859.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

springboot 引入第三方bean

如何进行第三方bean的定义 参数进行自动装配

数据库中索引的底层原理和SQL优化

文章目录 关于索引B 树的特点MySQL 为什么使用 B 树&#xff1f; 索引分类聚簇索引 和 非聚簇索引覆盖索引索引的最左匹配原则索引与NULL索引的代价大表结构修改 SQL优化EXPLAIN命令选择索引列其它细节 关于索引 索引是一种用来加快查找效率的数据结构&#xff0c;可以简单粗暴…

探索黏土特效?推荐这三款软件!

在数字化时代&#xff0c;我们拥有无数的工具来释放我们的创造力和想象力。其中&#xff0c;黏土特效软件就是一种能够将你的照片或图像转化为可爱、生动的黏土动画的工具。这些软件以其独特的视觉效果和易于使用的特性&#xff0c;吸引了大量的用户。下面&#xff0c;我们将为…

gorm-sharding分表插件升级版

代码地址&#xff1a; GitHub - 137/gorm-sharding: Sharding 是一个高性能的 Gorm 分表中间件。它基于 Conn 层做 SQL 拦截、AST 解析、分表路由、自增主键填充&#xff0c;带来的额外开销极小。对开发者友好、透明&#xff0c;使用上与普通 SQL、Gorm 查询无差别.解决了原生s…

FreeRTOS学习 -- 任务相关API函数

一、任务创建和删除API函数 FreeRTOS 最基本的功能就是任务管理&#xff0c;而任务管理最基本的操作就是创建和删除任务。 FreeRTOS的任务创建和删除API函数如下&#xff1a; 1、函数 xTaskCreate() 此函数用来创建一个任务&#xff0c;任务需要 RAM 来保存于任务有关的状…

nginx的应用部署nginx

这里写目录标题 nginxnginx的优点什么是集群常见的集群什么是正向代理、反向代理、透明代理常见的代理技术正向代理反向代理透明代理 nginx部署 nginx nginx&#xff08;发音同enginex&#xff09;是一款轻量级的Web服务器/反向代理服务器及电子邮件&#xff08;IMAP/POP3&…

每日一题 第九十七期 洛谷 [NOIP2000 提高组] 方格取数

[NOIP2000 提高组] 方格取数 题目背景 NOIP 2000 提高组 T4 题目描述 设有 N N N \times N NN 的方格图 ( N ≤ 9 ) (N \le 9) (N≤9)&#xff0c;我们将其中的某些方格中填入正整数&#xff0c;而其他的方格中则放入数字 0 0 0。如下图所示&#xff08;见样例&#xf…

同步电机原理解析

同步电机 同步带年纪&#xff0c;顾名思义无论负载如何&#xff0c;都能以恒定的速度运转&#xff0c;它以高效率著称 这种恒速特性是通过恒定磁场和旋转磁场的相互作用实现的&#xff0c;与其他电机一样&#xff0c;同步电机由定子和转子组成&#xff0c;定子铁芯由硅片层叠而…

STC8增强型单片机开发 【GPIO的理解⭐⭐】

目录 一、引言 二、GPIO概述 三、GPIO的功能 1. 输入功能&#xff1a; 2. 输出功能 四、GPIO的配置方法 1. 选择GPIO端口和引脚&#xff1a; 2. 设置GPIO模式&#xff1a; 3. 配置GPIO参数&#xff1a; 五、GPIO应用实例 1. 硬件连接&#xff1a; 2. 编程实现&…

2.1初识Spark

Spark于2009年诞生&#xff0c;最初是加州大学伯克利分校的研究项目。2013年加入Apache孵化器项目&#xff0c;2014年成为Apache顶级项目。Spark以内存内运算技术为核心&#xff0c;包含多个计算框架&#xff0c;成为大数据计算领域的后起之秀&#xff0c;打破了Hadoop的基准排…

2.外卖点餐系统(Java项目 springboot)

目录 0.系统的受众说明 1.系统功能设计 2.系统结构设计 3.数据库设计 3.1实体ER图 3.2数据表 4.系统实现 4.1用户功能模块 4.2管理员功能模块 4.3商家功能模块 4.4用户前台功能模块 4.5骑手功能模块 5.相关说明 新鲜运行起来的项目&#xff1a;如需要源码数据库…

如何防止源代码泄露?彻底解决源代码防泄密的方法

SDC沙盒系统&#xff1a;数据安全的守护者 SDC沙盒系统&#xff0c;为研发型企业设计&#xff0c;实现了对数据的代码级保护&#xff0c;同时不影响工作效率和正常使用。系统通过自动加密敏感数据&#xff0c;并配合多种管控机制&#xff0c;有效防止了数据的泄露。 涉密可信…

Python专题:五、条件语句

流程控制语句 count&#xff08;&#xff09;字符串计数 句尾\分行写码 运行输入cmd 输入Python 回车进入shell python 解释器 shell模式 再给x1,没有结果出来 if条件语句关键词&#xff0c;x>5条件表达式&#xff0c;&#xff1a;条件结束&#xff0c;四个空格&#x…

压缩机继电器EOCRDS-30NY7Q升级后型号:EOCRDS3-30S

EOCR-DS3系列型号&#xff1a; EOCRDS3-05S EOCRDS-05S EOCRDS1-05S EOCRDS3-30S EOCRDS-30S EOCRDS1-30S EOCRDS3-60S EOCRDS-60S EOCRDS1-60S EOCRDS3-05W EOCRDS-05W EOCRDS1-05W EOCRDS3-30W EOCRDS-30W EOCRDS1-30W EOCRDS3-60W EOCRDS-60W EOCRDS1-60W EOCR-DS3T-…

Java:就业市场上的常青树-永远的宠儿

除了兴趣&#xff0c;我们学习编程最主要的目标是找一份好工作&#xff0c;选择合适的编程语言就非常重要了&#xff0c;毕竟选择大于努力&#xff0c;男怕选错行&#xff0c;学编程最怕选错语言。比如&#xff0c;如果你选Perl&#xff0c;那就糟糕了&#xff0c;基本上可以断…

「网络流 24 题」试题库 【最大流】

「网络流 24 题」试题库 思路 建立超级源点 S S S 和超级汇点 T T T&#xff0c;将每一类题目拆分为入点 i n in in 和出点 o u t out out&#xff0c;连边 i n → o u t in \rarr out in→out&#xff0c;边权为 k i k_i ki​&#xff0c;也就是所需的题目数量&#xf…

cannot import name ‘ForkProcess‘ from ‘multiprocessing.context‘问题解决

问题描述 cannot import name ForkProcess from multiprocessing.context 问题原因 ForkContext用于Unix系统。SpawnContext可以在 Windows 环境中使用 解决方案 改成SpawnProcess就可以运行了 将原来的ForkProcess修改为SpawnProcess wrappers.py脚本&#xff0c;下面的代…

Python学习——环境搭建

Python 介绍 Python&#xff08;英国发音&#xff1a;/ˈpaɪθən/ 美国发音&#xff1a;/ˈpaɪθɑːn/&#xff09;是一种广泛使用的解释型、高级编程、通用型编程语言&#xff0c;由吉多范罗苏姆创造&#xff0c;第一版发布于1991年。可以视之为一种改良&#xff08;加入…

QGraphicsView实现简易地图12『平移与偏移』

前文链接&#xff1a;QGraphicsView实现简易地图11『指定层级-定位坐标』 提供地图平移与偏移功能。地图平移是指将地图的中心点更改为给定的点&#xff0c;即移动地图到指定位置。地图偏移是指将当前视口内的地图向上/下/左/右/进行微调&#xff0c;这里偏移视口宽/高的四分之…

商务分析方法与工具(六):Python的趣味快捷-字符串巧妙破解密码本、身份证号码、词云图问题

Tips&#xff1a;"分享是快乐的源泉&#x1f4a7;&#xff0c;在我的博客里&#xff0c;不仅有知识的海洋&#x1f30a;&#xff0c;还有满满的正能量加持&#x1f4aa;&#xff0c;快来和我一起分享这份快乐吧&#x1f60a;&#xff01; 喜欢我的博客的话&#xff0c;记得…