01 / 进程的状态
(1)三态模型
进程状态分为三个基本状态,即就绪态,运行态,阻塞态
(2)五态模型
在五态模型中,进程分为新建态,就绪态,运行态,阻塞态,终止态
02 / 进程相关命令
(1)编写test.c
#include <stdio.h>
#include <unistd.h>
int main(){
while (1)
{
printf("hello,my name is heheda!\n");
sleep(1);
}
return 0;
}
(2)gcc test.c -o test
(3) 开启另一个终端,杀死./test进程,kill -9 3597
(4)杀死进程效果图
03 / 进程号和相关函数