gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 17:19:54 27 4
gpt4 key购买 nike

因此在这段代码中 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() */

关于使用 shmat 后无法在标准输出上打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28753825/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com