上传者: landiao8848
|
上传时间: 2022-05-30 19:00:45
|
文件大小: 377KB
|
文件类型: DOCX
这是吉林大学计算机思维与操作系统是关于操作系统部分的实验报告,希望大家能好好利用。
实验主要内容:实验四 进程间通信实验
一、实验目的
掌握操作系统进程间通信技术。
二、实验内容
1、Unix下进程创建实验,理解exec命令对进程控制块的操作。
示例代码:
#include
#include
int main()
{
pid_t pid;
/* fork a child process */
pid = fork();
if (pid < 0) { /* error occurred */
fprintf(stderr, "Fork Failed");
return 1;
}
else if (pid == 0) { /* child process */
execlp("/bin/ls","ls",NULL);
}
else { /* parent process */
/* parent will wait for the child to complete */
wait(NULL);
printf("Child Complete");