【C语言】多线程

C语言之多线程创建

  • 多线程
    • 一、线程创建和回收
    • 二、线程属性
    • 三、线程分离
  • 最后

多线程

  线程是轻量级的线程(LWP:light weight process)

  线程是最小执行单位,进程是最小分配资源单位。一个进程可以有多个线程,一个进程可以理解为只有一个线程的进程。

  每个线程都有自己独立的pcb,它们有独立的线程id和线程号,线程id是程序员使用,线程号是系统使用,同一个进程的线程,它们的进程id是一样的,共享进程空间。

  可以使用命令 ps -Lf pid 来查看线程号。

  不管是fork创建子进程还是pthread_create 创建线程,底层实现都是调用同一个内核函数clone。区别就是复制原始进程的地址空间,那么就会创建一个子进程。如果共享原始进程的地址空间,那么就会创建一个线程。系统内核是不区分进程和线程的,因为它们都有自己独立的pcb,只有在用户层面的概念上区分。因此可以看出线程相关的 pthread_ 系列函数是库函数而不是系统调用。

一、线程创建和回收

循环创建线程

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>void *threadMethod(void *num)
{printf("this thread num is [%d], pid is [%d],tid is [%ld]\n", *(int *)num, getpid(), pthread_self());sleep(30);
}int main()
{int arr[5];pthread_t thread[5];int i;int ret;for (i = 0; i < 5; i++){arr[i] = i;ret = pthread_create(&thread[i], NULL, threadMethod, &arr[i]);if (ret != 0){printf("pthread_create error, [%s]\n", strerror(ret));return -1;}}printf("main thread, pid is [%d], tid is [%ld]\n", getpid(), pthread_self());sleep(30);return 0;
}

多线程使用pthread_exit退出线程,并用pthread_join接收退出状态

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <pthread.h>int * nums;void* thread_function(void* arg) {// 线程执行的代码int thread_id = *(int *)arg;nums[thread_id] = thread_id + 5;printf("Thread %d exiting,pid is [%d],tid is [%ld]\n", thread_id,getpid(),pthread_self());pthread_exit(&nums[thread_id]);
}int main() {nums = (int *)malloc(sizeof(int)*5);pthread_t threads[5];int indexes[5] = {1, 2, 3, 4, 5}; // 线程索引,用于打印for(int i = 0; i < 5; i++) {int ret = pthread_create(&threads[i], NULL, thread_function, &indexes[i]);if (ret) {printf("Thread creation error: %d\n", ret);return -1;}}void* exit_status;for(int i = 0; i < 5; i++) {int ret = pthread_join(threads[i], &exit_status);if (ret) {printf("Thread join error: %d\n", ret);return -1;}printf("Thread %d exited with status: %d\n", i, *(int *)exit_status);}return 0;
}
//输出
Thread 1 exiting,pid is [1913],tid is [140703346046720]
Thread 2 exiting,pid is [1913],tid is [140703337654016]
Thread 3 exiting,pid is [1913],tid is [140703329261312]
Thread 4 exiting,pid is [1913],tid is [140703320868608]
Thread 5 exiting,pid is [1913],tid is [140703312475904]
Thread 0 exited with status: 6
Thread 1 exited with status: 7
Thread 2 exited with status: 8
Thread 3 exited with status: 9
Thread 4 exited with status: 10

二、线程属性

pthread_create函数中的线程属性参数设置步骤

//1.定义线程属性变量
pthread_attr_t  attr;
//2.线程属性初始化,成功返回0,失败返回失败编号
int pthread_attr_init (pthread_attr_t* attr);
//3.线程属性变量添加分离属性,其中detachstate可以设置为
//PTHREAD_CREATE_DETACHED(分离)和PTHREAD_CREATE_JOINABLE(非分离)
//成功返回0,失败返回失败编号
int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate);
//4.创建线程后释放变量,成功返回0,失败返回失败编号
int pthread_attr_destroy(pthread_attr_t *attr);

三、线程分离

使用pthread_detach函数实现线程分离,线程的退出后不需要手动去回收资源,设置线程分离有两种方法,一个是使用pthread_detach函数,另一个是在pthread_create函数中添加分离属性。

方式一:使用pthread_detach函数实现线程分离

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>void *threadMethod(void *num)
{printf("this thread pid is [%d],tid is [%ld]\n", getpid(), pthread_self());
}int main()
{pthread_t thread;int ret = pthread_create(&thread, NULL, threadMethod, NULL);if (ret != 0){printf("pthread_create error, [%s]\n", strerror(ret));return -1;}ret = pthread_detach(thread);if (ret != 0){printf("pthread_detach error, [%s]\n", strerror(ret));return -1;}printf("main thread, pid is [%d], tid is [%ld]\n", getpid(), pthread_self());sleep(1);return 0;
}

方式二:pthread_create函数中添加分离属性

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>void *threadMethod(void *num)
{printf("this thread pid is [%d],tid is [%ld]\n", getpid(), pthread_self());
}int main()
{int ret;pthread_attr_t  attr;ret = pthread_attr_init(&attr);if (ret != 0){printf("pthread_attr_init error, [%s]\n", strerror(ret));return -1;}ret = pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_DETACHED);if (ret != 0){printf("pthread_attr_setdetachstate error, [%s]\n", strerror(ret));return -1;}pthread_t thread;ret = pthread_create(&thread, &attr, threadMethod, NULL);pthread_attr_destroy(&attr);if (ret != 0){printf("pthread_create error, [%s]\n", strerror(ret));return -1;}printf("main thread, pid is [%d], tid is [%ld]\n", getpid(), pthread_self());sleep(1);return 0;
}
//输出
main thread, pid is [2063], tid is [139936574068480]
this thread pid is [2063],tid is [139936565679872]

最后

推荐一个零声教育学习教程,个人觉得老师讲得不错,分享给大家:[Linux,Nginx,ZeroMQ,MySQL,Redis,
fastdfs,MongoDB,ZK,流媒体,CDN,P2P,K8S,Docker,
TCP/IP,协程,DPDK等技术内容,点击立即学习:链接

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

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

相关文章

3D模型相关生成

3D模型相关生成 1. DreamFusion Model DreamFusion Model 是一种将文本描述转化为三维模型的技术。你可以想象它是一个“魔法翻译器”&#xff0c;你告诉它一个场景或物体的描述&#xff0c;比如“一个飞翔的龙”&#xff0c;它就能生成一个相应的 3D 模型。 原理&#xff1…

测试实习生【面试小结 6.20】

1&#xff0c;自我介绍 2&#xff0c;你为什么要考虑测试这一份工作呢&#xff1f; 首先&#xff0c;据我了解&#xff0c;在近几年&#xff0c;国内对软件测试越来越重视了&#xff0c;并且从用户角度来说&#xff0c;对于同类产品&#xff0c;可能更加注重于产品的质量和服务…

【云计算 复习】第6节 AWS亚马逊

一、基础存储架构Dynamo 1.概述 &#xff08;1&#xff09;为了保证其稳定性&#xff0c;Amazon的系统采用完全的分布式、去中心化的架构。 &#xff08;2&#xff09;Dynamo只支持简单的键值对方式的数据存储&#xff0c;不支持复杂的查询 &#xff08;3&#xff09;Dynamo中…

大语言模型系列-Transformer

Transformer 是一种由 Vaswani 等人在 2017 年提出的大型神经网络架构&#xff0c;广泛应用于自然语言处理任务。Transformer 架构的关键特点在于其基于注意力机制&#xff08;Attention Mechanism&#xff09;&#xff0c;完全摒弃了传统的循环神经网络&#xff08;RNN&#x…

腾讯 MOFA-Video: 可控制图转视频

腾讯 MOFA-Video: 可控制图转视频 MOFA-Video 它支持运动轨迹、人脸关键点并支持将其混合控制图像转换为视频。 混合控制: 结合图像、控制信号和关键点生成动画。 运动画笔: 结合图像、轨迹和画笔生成动画。 控制比例: 调整动画的控制比例&#xff0c;从纯 SVD 到完全控制。 通…

“人工智能+”带来新变化

以生成式人工智能&#xff08;AIGC&#xff09;为代表的新一代人工智能技术创新加速演进&#xff0c;相关商业化应用成果也不断涌现&#xff0c;行业应用范围不断拓展&#xff0c;深度赋能实体经济&#xff0c;为行业提质增效与实现减排提供助力。 自主航运初创公司OrcaAI于6月…

Appium+python自动化(二十一)- 让猴子按你指令大闹手机,让我们都成为耍猴高手(超详解)

宏哥微信粉丝群&#xff1a;https://bbs.csdn.net/topics/618423372 有兴趣的可以扫码加入 简介  一年一度的暑假如期而至&#xff0c;每年必不可少的&#xff0c;便是《西游记》这部经典电视连续剧的播出&#xff0c;作为一名90后&#xff0c;对于这部经典剧的情谊&#xff…

深度学习工具jupyter创建并检测pytorch环境以及安装工具包

1. 前言 确保已经安装Python和anaconda&#xff08;anaconda一般自带jupyter&#xff09;。然后创建一个jupyter环境&#xff0c;查看启动后的new有没有环境选项。 如果遇到了EnvironmentLocationNotFound:Not such a environment。说明conda环境安装位置有问题&#xff0c;往…

Raspberry Pi AI Kit——Hailo-8L安装记录(预告)

Hailo-8的测试见往期文章&#xff0c;最近树莓派发布了官方套件——Raspberry Pi AI Kit&#xff0c;其采用Hailo-8L&#xff0c;算力为13TOPS&#xff0c;是Hailo-8算力的一半&#xff0c;官网地址为 Raspberry Pi AI Kit安装 最近在进行Raspberry Pi AI Kit使用测试 !](htt…

建议收藏!100款宝藏级AIGC工具分享,70款ChatGPT插件惊艳的开发过程与宏大的商业化愿景

建议收藏&#xff01;100款宝藏级AIGC工具分享&#xff0c;70款ChatGPT插件惊艳的开发过程与宏大的商业化愿景。 不输ChatGPT&#xff1f;整理了100款AIGC神器&#xff0c;打工人速进。 说到AIGC工具&#xff0c;你还是只知道ChatGPT&#xff1f; 实际上&#xff0c;越来越多…

景联文科技实力入选「2024中国AI大模型产业图谱1.0版」!

近日&#xff0c;数据智能产业创新服务媒体数据猿联合上海大数据联盟共同发布《2024中国AI大模型产业图谱1.0版》&#xff0c;从大数据和人工智能等智能技术的核心出发&#xff0c;全面覆盖整个产业链&#xff0c;为行业提供更为精细且直观的专业导向。 景联文科技凭借高质量数…

小区业主管理系统

摘 要 随着城市化进程的加速和人口的不断增加&#xff0c;小区的数量也在不断增加。小区作为城市居民居住的主要场所&#xff0c;其管理工作也变得越来越重要。传统的小区业主管理方式存在诸多问题&#xff0c;如信息传递不畅、业务处理效率低下等。因此&#xff0c;开发一个高…

ansible copy模块参选选项

copy模块用于将文件从ansible控制节点&#xff08;管理主机&#xff09;或者远程主机复制到远程主机上。其操作类似于scp&#xff08;secure copy protocol&#xff09;。 关键参数标红。 参数&#xff1a; src:&#xff08;source&#xff1a;源&#xff09; 要复制到远程…

“明天下班以后请假了,孩子中考“

「作者简介」&#xff1a;冬奥会网络安全中国代表队&#xff0c;CSDN Top100&#xff0c;就职奇安信多年&#xff0c;以实战工作为基础著作 《网络安全自学教程》&#xff0c;适合基础薄弱的同学系统化的学习网络安全&#xff0c;用最短的时间掌握最核心的技术。 前几天约服务器…

上海市计算机学会竞赛平台2023年9月月赛丙组点对之和(一)

题目描述 给定两个数列 &#x1d44e;1,&#x1d44e;2,…,&#x1d44e;&#x1d45b;a1​,a2​,…,an​ 与 &#x1d44f;1,&#x1d44f;2,…,&#x1d44f;&#x1d45b;b1​,b2​,…,bn​&#xff0c;保证这些数字是 11 到 &#x1d45b;n 之间的整数&#xff0c;请计算 …

轻轻一按,即可加速您的 Mac

一键智能清理 让你的 Mac 电脑焕然一新 CleanMyMac X 是一款专业的 Mac 电脑清理软件&#xff0c;支持一键扫描 Mac 磁盘垃圾&#xff0c;智能清理垃圾文件和系统语言安装包&#xff0c;快速释放磁盘空间&#xff0c;让你的 Mac 电脑焕然一新&#xff01; 智能扫描一键清理 Ma…

模板匹配算法:基于模板相关性匹配的手写数字识别

1 前言 得益于硬件技术的发展&#xff0c;基于深度学习的各种识别方法如火如荼&#xff0c;在各种应用场景中都取得很好的效果。本人入行深度学习领域若干年&#xff0c;做过很多项目的工程化评估&#xff0c;对于神经网络是如何工作的也解释不清楚&#xff0c;只是知道这样做是…

硬引用、软引用、弱引用、虚引用和原子引用

以下是不同类型引用的详细信息&#xff0c;通过表格展示原理、作用、使用场景和优缺点&#xff1a; 引用类型原理作用使用场景优点缺点硬引用默认的引用类型&#xff0c;只要有硬引用指向对象&#xff0c;垃圾收集器就不会回收该对象。确保对象在程序运行过程中一直存在。普通…

【IVIF】Equivariant Multi-Modality Image Fusion

2024CVPR Zixiang Zhao团队 分析透彻&#xff0c;方法耳目一新 统一融合架构 1、Motivation Our approach is rooted in the prior knowledge that natural imaging responses are equivariant to certain transformations 我们的方法根植于自然成像响应对于某些变换的等变性…