我正在运行 linux 并尝试执行以下操作:

  • 在当前目录上运行 ls(使用 popen)
  • 将结果输出到缓冲区(使用来自管道描述符的 fread)
  • 关闭管道(使用 pclose)。

  • 一切正常(缓冲区被 ls 结果正确填充)但是当我检查
    pclose() 结果它返回 -1 并且 errno 设置为 10(无子进程)。不知道为什么
    这正在发生,但我不能忽视它(除非对发生这种情况的原因有合理的解释)。

    我的代码:
    FILE * lsoutput = NULL;
    lsoutput = popen("ls -ltr", "r");
    if (readFromPipeOrFile(lsOutput, pSendBuf, pSendActualSize) == -1)
    {
            printf("readFromPipeOrFile failed.");
            pclose(lsOutput);
            safeFree(pSendBuf);
            return -1;
    }
    
    if (pclose(lsOutput) == -1) // No idea why it returns -1 but it does...
    {
            printf("pclose failed");
            printf("errno: %d\n", errno);
            printf("strerror: '%s'", strerror(errno));
            return -1;
    }
    

    readFromPipeOrFile 的代码(写入缓冲区的函数):
    int readFromPipeOrFile(FILE * pipeOrFile, char ** pSendBuf, size_t * pSendActualSize)
    {
         int multiplication = 1;
         char * pSendBufCurrentLocation = NULL;
         ERR_RETURN(pipeOrFile == NULL || pSendBuf == NULL || pSendActualSize == NULL,
                         "No values should be NULL.");
         ERR_RETURN(*pSendBuf != NULL, "*pSendBuf should be NULL");
    
         *pSendBuf = (char *) calloc (MAX_READ_FROM_STREAM * multiplication, sizeof(char));
         ERR_RETURN(*pSendBuf == NULL, "Failed allocating sendBuf");
    
         pSendBufCurrentLocation = *pSendBuf;
         while (fread(pSendBufCurrentLocation, MAX_READ_FROM_STREAM, 1, pipeOrFile) == 1)
         {
                 ++multiplication;
                 *pSendBuf = realloc(*pSendBuf, MAX_READ_FROM_STREAM * multiplication);
                 ERR_RETURN(*pSendBuf == NULL, "Failed re-allocating sendBuf");
    
                 pSendBufCurrentLocation = *pSendBuf + (MAX_READ_FROM_STREAM * (multiplication - 1));
                 memset(pSendBufCurrentLocation, '\0', MAX_READ_FROM_STREAM);
         }
    
         ERR_RETURN(!feof(pipeOrFile), "Hasn't reached eof but fread stopped");
         ERR_RETURN(ferror(pipeOrFile), "Error in fread");
    
         *pSendActualSize = MAX_READ_FROM_STREAM * multiplication;
    
         return 0;
    }
    

    提前致谢!
    编辑:ERR_RETURN 只是一个宏,用于检查第一个参数的条件是否为真,如果是,则在第二个参数中打印字符串并返回 -1。

    最佳答案

    信号(SIGCHLD, SIG_IGN) 将导致 pclose() 结果返回 -1 并且 errno 设置为 10(无子进程)。

    关于c - 使用 popen() 打开的文件描述符上的 pclose() 返回 errno 10(无子进程),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15992984/

    10-11 20:56