使用 shmat 后无法在标准输出上打印

Can't print on standard output after using shmat

所以在这段代码中puts无法显示输出。

如果我删除 fgets 行,它会打印 lola 但如果我尝试在 shm 上读写,则什么也不会发生。我该如何解决这个问题?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/types.h>

#define SHMSZ 4096

int
main()
{
  pid_t pid1, pid2, pid3;
  pid1 = fork();
  if (pid1 == 0)
    {
      /* child1 */
      int shmid;
      key_t key;
      char * shm;
      key = 5678;
      if ((shmid = shmget(key, SHMSZ, IPC_CREAT | 0666)) < 0)
        {
          perror("shmget");
          exit(1);
        }
      if ((shm = shmat(shmid, NULL, 0)) == (char *) -1)
        {
          perror("shmat");
          exit(1);
        }
      printf("alright");
      if (fgets(shm,60,stdin))
        {
          /* This doesn't print. */
          puts(shm);
        }
      else
        {
          printf("hurara");
        }
      printf("lola");
    }
  else
    {
      pid2 = fork();
      if(pid2 == 0)
        {
          /* child2 */
        }
      else
        {
          pid3 = fork();
          if (pid3 == 0)
            {
              /* child3 */
            }
          else
            {
              /* parent */
              wait(0);
              wait(0);
              wait(0);
            }   
        }
    }
  return 0;
}

您的 #include 有一些问题。你编译时有警告吗?如果我使用这些(已注释的问题),该程序编译干净并按我假设的方式运行。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ipc.h>
/* #include <sys/sem.h> */    /* this one is not needed... */
#include <sys/shm.h>          /* ...but this one is */
#include <sys/types.h>
#include <sys/wait.h>         /* was missing, needed for wait() */
#include <unistd.h>           /* was missing, needed for fork() */