execl没有运行编程

时间:2015-02-12 05:13:02

标签: c++ c process exec

我有以下两个简单的程序:

bye.cc

#include <iostream>

int main()
{ std::cout <<  "Bye bye bye world" << std::endl; }

hello.cc

#include <cstdlib>
#include <unistd.h>
#include <sys/wait.h>
#include <iostream>
using namespace std;


int main()
{
    int status;

    cout <<  "Hello world" << endl;

    int pid = fork();
    if (pid != 0) {
        cout << "I am parent - " << pid << endl;
        // wait for child to finish up......
        cout << "Waiting for child to finish" << endl;
        wait(&status);
        cout << "Child finished, status " << status << endl;
    } else {
        cout << "--- I am child - " << pid << endl;   // **Note**
        execl("bye", "");
        cout << "--- I am sleeping" << endl;
        sleep(3);
        exit(11);
    }
}

在hello.cc中,如果启用了标记为“Note”的行(未注释),则会得到预期的行为,不执行sleep(3),并执行“bye”,将期望的msg打印到控制台。 / p>

$ ./hello
Hello world
I am parent - 27318
Waiting for child to finish
--- I am child - 0
Bye bye bye world
Child finished, status 0

但是,当注释标记为“注意”的行时,不执行“再见”,并执行sleep(3)。

$ ./hello
Hello world
I am parent - 27350
Waiting for child to finish
--- I am sleeping
Child finished, status 2816

有人可以帮我理解可能发生的事情。我发现很奇怪,如果我用printf()替换“cout”,那么就进行了睡眠。

谢谢你, 艾哈迈德。

2 个答案:

答案 0 :(得分:1)

根据the specexecl的参数列表必须以NULL指针终止(即(char *)0,而不是"")。

更改附近的代码只是改变调用execl时堆栈上发生的事情。如上所述,程序的行为未定义。

P.S。始终检查库例程的返回值是否有错误。

答案 1 :(得分:0)

exec系列函数,成功时,不返回。 这就是执行execl()时没有看到sleep注释的原因。