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

#include "structs.h"
#include "server.h"
#include "client.h"


int main(void)
{

  pid_t pid;
  int mypipe[2];
  int otherPipe[2];

  if(pipe(mypipe))
    {
      printf("Error in making a pipe");
    }
  if(pipe(otherPipe))
    {
      printf("Error creating another pipe");
    }
  if((pid=fork()) == -1)
    {
      perror("fork");
      exit(1);
    }
  printf("Child ID: %d" , pid);
  if(pid == 0)
    {
      close(mypipe[1]);
      close(otherPipe[0]);
      client *c = new client(mypipe[0], otherPipe[1]);
      wait(NULL);
      //c->startProgram();
      //return EXIT_SUCCESS;
    }
  else
    {
      printf("Yo");
    close(mypipe[0]);
    close(otherPipe[1]);
    server s;
    s.fdIn = otherPipe[0];
    s.fdOut = mypipe[1];
    s.startServer();
    //wait(NULL);
    //return EXIT_SUCCESS;
    }
}

上記は私のコードです。子プロセスは正常に実行されますが (明らかにそのコメントを削除すると)、else が実行されることはありません (または、ターミナルに何か不足していますか?)。

出力のスクリーンショットは次のとおりです: http://i.imgur.com/dUWn8.png

else/parent スポットに移動しない理由について何か考えはありますか?

ありがとう!

4

1 に答える 1

3

stdioバッファリングされているためでしょうか?printf子 IDを指定した後、出力をフラッシュしてみてください。または\n. またはfprintfにそれをing stderr

編集:明確にするために。私の推測では、それが親にならない理由ではなく、期待する出力が表示されない理由です。

于 2012-09-23T18:55:44.210 に答える