其他分享
首页 > 其他分享> > 线程

线程

作者:互联网

什么是线程

image
image
注意:
ps -Lf (进程名字)可以查看进程的线程
image

Linux内核实现线程的原理

image
首先先介绍一下三级页表
image
image
image

线程创建

image
注意编译和链接的使用使用 -pthread表示引入线程库
image

/*************************************************************************
  > File Name: pthread_test.c
  > Author: shaozheming
  > Mail: 957510530@qq.com
  > Created Time: 2022年03月02日 星期三 12时09分06秒
 ************************************************************************/

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

void sys_err(const char *str)
{
	perror(str);
	exit(1);
}

void *func(void *args)
{	
	int i = (int)args;
	printf("I'm %d thread. threadpid: %d, tid: %lu\r\n", i, getpid(), pthread_self());
	return NULL;
}

int main(int argc, char* argv[])
{
	int i;
	pthread_t tid;
	printf("mainpid: %d, tid: %lu\r\n", getpid(), pthread_self());

	for(i = 0; i < 5; ++i){
		/* 四个参数分别是线程id,线程属性,回调函数和回调函数参数 */
		int ret = pthread_create(&tid, NULL, func, (void *)i);
		if(ret < 0){
			sys_err("pthread create error!\r\n");
		}
	}
	sleep(1);
	return 0;
}

image
image
如果传递地址,相当于间接引用,线程访问main线程的栈地址,如果main中i变化,原来i的线程也会变

线程间共享全局变量

image

pthread_exit函数

image
image

pthread_join函数

image
image
回收值是整型,最后就得是整型指针,void* 对应的就是void**
image
注意第二个参数是线程函数的返回值
image
image
image

pthread_detach

image
image

线程中的检查出错

image

pthread_cancel

image
image
可以杀死进程,需要进入内核,如果线程只有一个while循环,即没有系统调用,说明进不了内核,就杀死不了
image

进程线程控制原语比对

image

线程属性

Linux内核2.2版本的属性
image
image
image

使用线程注意事项

image

标签:int,void,线程,pthread,tid,include
来源: https://www.cnblogs.com/yoshinb/p/15956810.html