进程间通信-1

进程间通信-1

进程相关知识

启动新进程

system

定义

#include<stdlib.h>
int system(const char* string);

作用

  • system 调用一个shell来启动想要执行的程序
  • system 可以放入后台执行
  • 程序必须等待system函数启动的进程结束后才能继续
exec

定义

#include<unistd.h>
int execl(const char* path,const char* arg0,....,(char*)0);
int execlp(const char* file,const char* arg0,...,(char*)0);
int execv(const char* path,char *const argv[]);
int execvp(const char* file,char * const argv[]);

参数

  • path:文件的绝对路径
  • file:若文件在PATH中,则不需要提供绝对路径,提供文件名即可
  • (char* )0:参数结尾的标志

作用

  • exec会调用所给出来的程序,并替换当前进程,新进程的PID,PPID和nice值和原来完全一样
fork

定义

#include<sys/types.h>
#include<unistd.h>
pid_t fork(void);

作用

  • 系统复制当前进程,子进程有自己的数据空间,环境和文件描述符
  • 子进程返回的pid_t为0,原进程为子进程的值,由此可以区分父子进程

进程相关函数

getpid

定义

#include<unistd.h>
pid_t getpid(void);

作用

  • 获取当前进程的pid
waitpid

定义

#include<sys/types.h>
#include<sys/wait.h>
pid_t waitpid(pid_t pid,int * stat_loc,int options);

参数

  • pid:等待的子进程的pid
  • stat_loc:如果非空就将状态信息写入
  • options:改变waitpid的行为

作用

  • 等待子进程结束
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值