我遇到的问题是我们应该在execlp中使用exit()调用来返回小整数。这是一种糟糕的沟通方式,但这是我们为了这个计划而应该做的事情。
这是我的“协调员”计划
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
using namespace std;
int main (int argc,char* argv[])
{
const int size = argc-1;
int sizeArray = 0;
int numofProc =0;
int arrayofNum[size];
int status;
int value;
for(int y=1; y<argc; y++)
{
arrayofNum[y-1] = atoi(argv[y]);
sizeArray++;
}
if(sizeArray % 2 !=0)
{
arrayofNum[sizeArray] = 0;
sizeArray++;
}
numofProc = sizeArray/2;
//declaration of a process id variable
pid_t pid;
//fork a child process is assigned
//to the process id
pid=fork();
//code to show that the fork failed
//if the process id is less than 0
if(pid<0)
{
cout<<"Fork Failed";// error occurred
exit(-1); //exit
}
//code that runs if the process id equals 0
//(a successful for was assigned
else
if(pid==0)
{
//this statement creates a specified child process
execlp("./worker", "worker", arrayofNum[0], arrayofNum[1]);//child process
}
//code that exits only once a child
//process has been completed
else
{
waitpid(pid, &status, 0);
cout<<status;
}
//main
}
这是execlp进程
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
using namespace std;
int main(int argc, char* argv[])
{
int arrayofNum[argc-1];
arrayofNum[0] = atoi(argv[1]);
arrayofNum[1] = atoi(argv[2]);
int sum = arrayofNum[0] + arrayofNum[1];
exit(sum);
}
我的问题无关紧要我做什么,状态总是打印0,我不知道如何检索从工作进程返回的总和。
我的教授告诉我“”只有较高字节的状态才会有工人返回的值。你需要提取它。它可以通过多种方式完成。 “”
在坚果壳中,我的问题是,如何检索从我的工作流程发送的“总和”。
拜托,我很困惑,已经有2个晚上想知道这个
谢谢,
约翰
答案 0 :(得分:3)
首先,您需要将字符串传递给您的程序,但您要说:
execlp("./worker", "worker", arrayofNum[0], arrayofNum[1]);
arrayofNum
是一个整数数组。另外,使用execlp,您还需要传递NULL
作为最后一个参数。 The standard说:
arg0,... 表示的参数是指向以null结尾的指针 字符串。这些字符串应构成参数列表 可用于新的过程映像。 列表以null结尾 指针强>
其次,在致电waitpid(2)
之后,您需要执行以下操作:
if (WIFEXITED(status))
code = WEXITSTATUS(status);