1Linux流程概述
1.1进程标识
ppid:%d\n",getpid(),getppid());
1.2进程的用户ID与组ID
进程执行过程中必须有类似于用户的身份,哪个用户就是该用户的身份,就是那个用户的组
可用getuid(),getgid();获得
进程还有有效用户ID和有效组ID,缺少的情况下,与真实ID同样,能够用geteuid(),getegid();
文件权限有S的时候,有效ID是进程的全部者(创建者),否则有效ID就是程序的执行者,与真实ID同样
ps -aux查看全部用户进程的权限,cpu,和内存的使用情况
1.3进程的状态
1.4LInux下的进程结构
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQveW91bmd5YW5neWFuZzA0/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast" alt="">
1.5LInux下的进程管理
2 进程的创建
2.1system函数
#include<iostream>
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
using namespace std;
int main(int argc,char *argv[]){
char cmd[1024]="";
for(int i=1;i<argc;i++){
strcat(cmd,argv[i]);
strcat(cmd," ");
}
puts(cmd);
int ans;
ans=system(cmd);
printf("%x\n",ans);
}
用system调用其它可运行程序,并输入參数 输入比如: ./main ./my_add 当中my_add计算两个数之和
int main(int argc,char *argv[]){
if(argc!=2){
printf("failed\n");
return 0;
}
int left,right;
char cmd[1024]="";
char line[1024]="";
strcat(cmd,argv[1]);
strcat(cmd," ");
while(printf(">>"),scanf("%d %d",&left,&right)){
memset(line,0,sizeof(line));
sprintf(line,"%s %d %d",argv[1],left,right);
strcpy(cmd,line);
int ret;
ret=system(cmd);
printf("result:%d\n",ret/256);
}
}
2.2fork函数
#include<iostream>
#include<unistd.h>
#include<stdlib.h>
#include<stdio.h>
using namespace std;
int main(int argc,char *argv[]){
pid_t pid;
int i=3;
printf("hello\n");
pid=fork();
fflush(stdout);//儿子复制的时候将缓冲区也复制了,假设没有这句话。上面的hello将出现两便
if(pid>0){
printf("parents:pid:%u,ret:%u,pp:%u\n",getpid(),pid,getppid());
}
else if(pid==0){
// sleep(5);
printf("child:pid:%u,ret:%u,pp:%u\n",getpid(),pid,getppid());
}
printf("bye!\n");
}
2.3exec函数
int execlp(const char *file, const char *arg, ...);
int execle(const char *path, const char *arg,..., char * const envp[]);
int execv(const char *path, char *const argv[]);
int execvp(const char *file, char *const argv[]);
int execvpe(const char *file, char *const argv[], char *const envp[]);
if(execl("/home/yang/0820/my_exec/","my_add","3","2",NULL)==-1){
perror("execl error");
}
int execlp(const char *file, const char *arg, ...);比如:
if(execlp("./my_add","my_add","fwef","fwe","fewgeraf",NULL)==-1){
perror("execlp error");
}
int execv(const char *path, char *const argv[]);比如:
char *args[10];
args[0]="my_add";
args[1]="12";
args[2]="23";
args[3]=NULL;
if(execv("/home/yang/0820/my_exec/my_add",args)==-1){
perror("execl:");
}
2.4popen函数(以后补充)
popen函数类似system函数,与system不同之处在于它使用管道操作,
FILE*popen(const char *command, const char *type);
int pclose(FILE *stream);
command为可运行文件的全路径和运行參数。type可选參数为“r” 或“w”
假设type是“w”(即当前的程序的输出结果作为commend命令的输入),调用程序能够用fwrite想调用程序发送数据,而被调用的程序能够在自己的标准输入上读取这些数据
FILE *fp;
char a[1000];
char b[1000];
char cmd[1024]="";
printf("plseas write\n");
fgets(a,1000,stdin);
sprintf(cmd,"%s %s",argv[1],a);
fp=popen(cmd,"r");//这个指令cmd为可运行文件的全路经
fgets(b,1000,fp);
printf("%s\n",b);
新进程屏幕输出:
FILE *fp;
char a[1000];
gets(a);
fp=popen(argv[1],"w");
fputs(a,fp);
pclose(fp);
3.进程控制与终止
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
main()
{
pid_t pid = fork();
if( pid == 0 )
{
exit(10);
}
else
{
sleep(10); }
}
避免僵尸进程样例:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
main()
{
pid_t pid = fork();
if( pid == 0 )
{
exit(10);
}
else
{
wait(NULL); //NULL表示等待全部进程
sleep(10); //通常要将sleep放在wait的后面,要不然也会出现僵尸进程
}
}
3.2进程的终止
exit和_exit函数的原型:
#include<stdlib.h> //exit的头文件
#include<unistd.h> //_exit的头文件
void exit(int status);
void_exit(int status);
status是一个整型的參数,能够利用这个參数传递进程结束是的状态。0表示正常退出,其它数表示出现错误,进程非正常结束
版权声明:本文博客原创文章,博客,未经同意,不得转载。