操作系统实验报告(进程的创建)(共8页)_第1页
操作系统实验报告(进程的创建)(共8页)_第2页
操作系统实验报告(进程的创建)(共8页)_第3页
操作系统实验报告(进程的创建)(共8页)_第4页
操作系统实验报告(进程的创建)(共8页)_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、实验题目进程的创建小组合作否姓名班级学 号一、实验目的1、 了解进程的创建。2、 了解进程间的调用以及实现。3、 分析进程竞争资源的现象,学习解决互斥的方法。4、 加深对进程概念的理解,认识并发执行的本质。二实验环境Windows 系统的计算机一台,安装了Linux虚拟机三、实验内容与步骤1、fork()系统调用的使用例子程序代码:#include<stdio.h>#include<sys/types.h>#include<unistd.h>int glob=3;int main(void) pid_t pid;int loc=3; printf("

2、;before fork();glod=%d,loc=%d.n",glob,loc); if(pid=fork()<0) printf("fork() error. n"); exit(0); else if(pid=0) glob+; loc-; printf("child process changes glob and loc: n"); else wait(0); printf("parent process doesn't change the glob and loc:n"); printf(&qu

3、ot;glob=%d,loc=%dn",glob,loc); exit(0);运行结果:2、理解vofork()调用:程序代码:#include<stdio.h>#include<sys/types.h>#include<unistd.h>int glob=3;int main(void) pid_t pid; int loc=3; if(pid=vfork()<0) printf("vfork() errorn"); exit(0); else if(pid=0) glob+; loc-; printf("ch

4、ild process changes the glob and locn"); exit(0); else printf ("parent process doesn't change the glob and locn"); printf("glob=%d,val=%dn",glob,loc);运行结果:3、给进程指定一个新的运行程序的函数exec().程序代码:printe1.c代码:#include<stdio.h>int main(int argc,char * argv)int n;char * * ptr;ex

5、tern char * * environ;for(n=0;n<argc;n+)printf("argv%d:%sn",n,argvn);for(ptr=environ; * ptr!=0;ptr+)printf("%sn",* ptr);exit(0);file4.c代码如下:#include<stdio.h>#include<sys/types.h>#include<unistd.h>#include<sys/wait.h>char * env_list="USER=root"

6、,"PATH=/root/",NULL;int main()pid_t pid;if(pid=fork()<0)printf("fork error!n");exit(0);else if(pid=0)if(execle("/root/print1","print1","arg1","arg2",(char *)0,env_list)<0)printf("execle error!n");exit(0);if(waitpid(pid,NULL,

7、0)<0)printf("WAIT ERROR!n");exit(0);if(pid=fork()<0)printf("fork error!n");exit(0);else if(pid=0)if(execlp("print1","print1","arg1",(char *)0)<0)printf("execle error!n");exit(0);exit(0);运行结果:4、进程终止函数exit()。程序代码:#include<stdio.h&

8、gt;main() printf("this is a exit system call! n"); exit(0); printf("this sentence never be displayen:n"); #include<stdio.h>main() printf("this is a _exit_test system call! n"); printf("content in buffer"); exit(0);运行结果:5、wait()函数和sleep()函数。程序代码:#include&

9、lt;stdio.h>main() int pid1; if(pid1=fork() if(fork() printf("parent's context,n"); printf("parent's waiting the child1 terminate,n"); wait(0); printf("parent's waiting the child2 terminate,n"); wait(0); printf("parent terminates,n"); exit(0); el

10、se printf("child2's context,n"); sleep(5); printf("child2 terminates,n"); exit(0); else if(pid1=0) printf("child1's context,n"); sleep(10); printf("child1 terminates,n"); exit(0); 运行结果:6、编写一段程序,父进程使用fork()创建两个子进程,利用输出函数putchar父进程显示字符”a”,两个子进程分别显示“b”和“c

11、”。程序代码:#include<stdio.h>#include<sys/types.h>#include<unistd.h>int main() int pid;if(pid=fork() if(fork() printf("parent process is n"); putchar('A'); printf("n"); else printf("child2 process is n"); putchar('C'); printf("n");

12、 else if(pid=0) printf("child1 process is n"); putchar('B'); printf("n"); 运行结果:四、实验过程与分析1、在1例子中,调用正确完成时,给父进程返回的是被创建子进程标识,给子进程自己返回的是0;创建失败时,返回给父进程的是-1。2、在2例子中,vfork()调用后需要注意两点:(1)子进程先运行,父进程挂起。子进程调用exec()或exit()之后。父进程的执行顺序不再有限制。(2)子进程在调用exec()或exit()之前。父进程被激活,就会造成死锁。3、在6例子中,上述程序是父进程先创建一个子进程,若成功,再创建另一个子进程,之后三个进程并发执行。究竟谁先执行,是随机的。所以执行结果有多重种。五、实验总结1、一个进程调用exec()函数来运行一个新程序。之后该进程的代码段、数据段和堆栈段就被新程序的所代替。新程序从自己的main()函数开始执行。exec()函数有6种不同的形式,任何一个都可以完成exec()的功能,只是调用参数不同。2、在父子进程同步中,当一个进程结束时,产生一个终止状态字,然后核心发一个SIGCHLD信号通知父进程。因为子进程结

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论