execl之前的打印在输出中不可见

kap*_*dit 3 c linux printf exec waitpid

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>

int main(void)
{
    pid_t Checksum_pid = fork();

    if (Checksum_pid < 0)
        printf("Fork Failed\n");
    else if (Checksum_pid == 0)
    {
    printf("\nInside Child Process before execl");        
    //execl("/bin/sleep", "/bin/sleep", "2", NULL);
    execl("/bin/ls","ls",(char *)NULL) ;
        //exit(EXIT_FAILURE);
    printf("\nInside Child Process after execl\n");
    exit(EXIT_FAILURE);
    }
    else
    {
        int childStatus;        
    printf("\nInside Parent Process");
    sleep(5);
    pid_t returnValue = waitpid(Checksum_pid, &childStatus, WNOHANG);

        if (returnValue > 0)
        {
            if (WIFEXITED(childStatus))
                printf("\nChild Exit Code: %d\n", WEXITSTATUS(childStatus));
            else
                printf("\nChild Exit Status: 0x%.4X\n", childStatus);
        }
        else if (returnValue == 0)
            printf("\nChild process still running\n");
        else
        {
            if (errno == ECHILD)
                printf("\nError ECHILD!!\n");
            else if (errno == EINTR)
                printf("\nError EINTR!!\n");
            else
                printf("\nError EINVAL!!\n");
        }
    printf("\nParent: I am about to finish\n");
    }

    return 0;
}
Run Code Online (Sandbox Code Playgroud)

输出:

kth4kor-2:~/bosch/Test1$ ./a.out  a.out  ___waitpid_test1  waitpid_test1~  waitpid_test1.c  waitpid_test1.c~  waitpid_test2.c  waitpid_test2.c~ 
Inside Parent Process Child Exit Code: 0
Parent: I am about to finish
Run Code Online (Sandbox Code Playgroud)

现在,如果我将删除父节点中的sleep(5),则输出:

kth4kor-2:~/bosch/Test1$ ./a.out 
Inside Parent Process

Child process still running

Parent: I am about to finish

kth4kor@g3gdev-kth4kor-2:~/bosch/Test1$ a.out  ___waitpid_test1  waitpid_test1~  waitpid_test1.c  waitpid_test1.c~  waitpid_test2.c  waitpid_test2.c~
Run Code Online (Sandbox Code Playgroud)

最后我尝试使用0作为waitpid而不是WNOHANG的第三个参数然后它给了我以下输出与任何打印的孩子:

kth4kor-2:~/bosch/Test1$ ./a.out 
a.out  ___waitpid_test1  waitpid_test1~  waitpid_test1.c  waitpid_test1.c~  waitpid_test2.c  waitpid_test2.c~
Inside Parent Process
Child Exit Code: 0
Parent: I am about to finish
Run Code Online (Sandbox Code Playgroud)

在执行execl之后和执行之前,有人可以帮助我理解进程的行为吗?

Som*_*ude 8

请记住,通过printf(to stdout)的输出通常是行缓冲的.这意味着输出缓冲区在换行符上刷新.由于在要打印的字符串之后没有换行符,因此不会刷新输出缓冲区.

在字符串中添加最后一行换行符,或者手动刷新缓冲区fflush.

  • @kapilddit 如果`execl`(和family)成功,它将*不*返回。它只会在失败时返回。它的作用是用调用加载的图像*替换*当前进程的图像(程序,大致)。 (2认同)