进程间通讯(IPC, InterProcess communication)
- 管道(使用最简单)
- 信号(开销最小)
- 共享映射区(无血缘关系)
- 本地套接字(最稳定)
1、管道
- 管道能够实现两个进程间的通讯
- pipe(int[]),需要传入一个文件描述符数组,长度为2做为管道的两端操作
- 函数[……]
进程间通讯(IPC, InterProcess communication)
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main(){
pid_t pid = getpid();
printf("pid:%u\n" ,pid);
// 从此处开始,后面的代码会被执行2次
pid_t fork_pid = fork();
if (fork_pid == -1){
perror("fork error:");
exit(1);
}else if (fork_pid == 0){
// 为0是返回给子线程,表明线程创建成功
// 当前操作在子线程中执行
printf("子进程:pid:%u, ppid:%u\n", getpid(), getppid());
}else{
// 父线程中返回的是子线程id号
printf("父进程:pid:%u, ppid:%u\n", getpid(), getppid());
}
printf("fork:%u\n", fork_pid);
return 0;
}
输出结果为:[……]