《實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行》由會(huì)員分享,可在線閱讀,更多相關(guān)《實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行(5頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。
1、 實(shí)驗(yàn)一:進(jìn)程創(chuàng)建、并發(fā)執(zhí)行
一、 實(shí)驗(yàn)?zāi)康?
加強(qiáng)對(duì)進(jìn)程概念的理解
進(jìn)一步了解并發(fā)執(zhí)行的實(shí)質(zhì)
二、 實(shí)驗(yàn)內(nèi)容
1、 利用fork()函數(shù)創(chuàng)建子進(jìn)程。
2、 考察fork()函數(shù)創(chuàng)建的子進(jìn)程與父進(jìn)程之間的同名變量是否為臨界資源。
3、 利用fork()函數(shù)編寫一個(gè)程序,要求父進(jìn)程創(chuàng)建兩個(gè)子進(jìn)程,父進(jìn)程、子進(jìn)程并發(fā)執(zhí)行,輸出并發(fā)執(zhí)行的消息。
三、 實(shí)驗(yàn)環(huán)境
PC + Linux Red Hat操作系統(tǒng)
GCC
四、 實(shí)驗(yàn)原理及實(shí)驗(yàn)思
2、路
fork()
功能:創(chuàng)建一個(gè)新的進(jìn)程
語(yǔ)法:#include
#include
pid_t fork();
說(shuō)明:本系統(tǒng)調(diào)用為調(diào)用進(jìn)程(也稱父進(jìn)程)創(chuàng)建一子進(jìn)程。事實(shí)上,子進(jìn)程是父進(jìn)程的一個(gè)“復(fù)制品”。父子進(jìn)程為獨(dú)立進(jìn)程,平等調(diào)度,用戶空間獨(dú)立 。
返回值:調(diào)用成功,則返回兩次。對(duì)子進(jìn)程返回0,對(duì)父進(jìn)程返回子進(jìn)程號(hào),這也是最方便的區(qū)分父子進(jìn)程的方法。調(diào)用失敗則返回-1給父進(jìn)程,子進(jìn)程不生成
kill()
功能:殺死執(zhí)行中的進(jìn)程
語(yǔ)法:#include
#includ
3、e
void kill(pid_t pid,int signo);
說(shuō)明:pid為要被殺死的進(jìn)程id,signo可以置為SIGINT或SIGTERM。
返回值:等待到一個(gè)子進(jìn)程返回時(shí),返回值為該子進(jìn)程號(hào),同時(shí)stat_loc帶回子進(jìn)程的返回狀態(tài)信息(參考exit)。若無(wú)子進(jìn)程,則返回值為-1。
五、 流程圖
六、源代
4、碼
Lab1-1:
#include
#include
#include
main()
{
pid_t child;
printf(“Forking...\n");
child =fork();
if (child<0){
perror("Fork failed!\n");
exit(1);
}
else if (child==0){
printf("I'm the child!\n");
}
else{
5、 printf("I'm the parent!\n");
}
printf("Why I'm printed twice??\n");
}
Lab1-2:
#include
#include
#include
main()
{
pid_t child;
int a=0;
printf("Forking...\n");
child=fork();
if (child<0){
perror("Fork failed!\n");
6、 exit(1);
}
else if (child==0){
a++;
printf("Child:a=%d\n",a);
}
else{
a++;
printf("Parent:a=%d\n",a);
}
}
Lab1-3:
#include "unistd.h"
#include "sys/types.h"
#include "signal.h"
#include "stdio.h"
int main(int argc,char* argv[])
{
pid_t chi
7、ld1_pid,child2_pid;
int i = 15;
/*fork*/
printf("first fork\n");
child1_pid = fork();
if(child1_pid < 0)
{
printf("fork() fail!\n");
return -1;
}
else if(child1_pid == 0)
{
printf("this is the first child process \n");
while(1)
{
sleep(1);
printf("the first c
8、hild proc waiting to be killed\n");
}
}
else
{
printf("this is farther process, after first fork\n");
}
/*fork*/
printf("second fork\n");
child2_pid = fork();
if(child2_pid < 0)
{
printf("fork() fail!\n");
return -1;
}
else if(child2_pid == 0)
{
printf("this is
9、 the second child process \n");
while(1)
{
sleep(1);
printf("the second child proc waiting to be killed\n");
}
}
else
{
printf("this is farther process, after second fork\n");
}
while(i > 0)
{
printf("after %d second,all proc will be killed\n",i);
sleep(2);
i
10、 -= 2;
}
/*kill*/
printf("kill the first child proc\n");
kill(child1_pid,SIGINT);
printf("kill the second child proc\n");
kill(child2_pid,SIGINT);
return 0;
}
七、 運(yùn)行結(jié)果及其分析
Lab1-1:輸出:Forking...
I'm the child!
Why I'm printed twice?
11、?
Lab1-2:輸出:Forking...
Child a1
Lab1-3:輸出:first fork
this is the first child process
the first child proc waiting to be killed
this is the second child process
this is farther process, after second fork
八、 實(shí)驗(yàn)總結(jié)
加強(qiáng)了對(duì)進(jìn)程概念的理解,進(jìn)一步了解了并發(fā)執(zhí)行的實(shí)質(zhì)