在 C 程序中,我有一个菜单,有一些选项可供选择,由字符表示。有一个选项可以分叉进程并运行一个函数(我们可以说它在后台运行)。这个在后台运行的功能,在某些情况下,可以要求用户输入数据。
我的问题是:当主进程请求数据(或选项)并且子进程也在请求数据时,我无法正确发送数据。
你对如何处理这个有任何想法吗?
我将添加一些代码结构(我不能全部发布,因为大约有 600 行代码):
int main(int argc, char *argv[])
{
// Some initialization here
while(1)
{
scanf("\n%c", &opt);
switch(opt)
{
// Some options here
case 'r':
send_command(PM_RUN, fiforfd, fifowfd, pid);
break;
// Some more options here
}
}
}
void send_command(unsigned char command, int fiforfd, int fifowfd, int pid)
{
// Some operations here
if(command == PM_RUN)
{
time = microtime();
childpid = fork();
if(childpid == -1)
{
// Error here
}
else if(childpid == 0)
{
// Here is the child
// Some operations and conditions here
// In some condition, appears this (expected a short in hexadecimal)
for(i = 0; i < 7; ++i)
scanf("%hx\n",&data[i]));
// More operations
exit(0);
}
}
}