在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);
}
}
}