下面给出的代码(process1)类似于actaul scanrio。我global_data
使用 process1 的进程 ID 从另一个应用程序更新。
因为getchar()
在process1中,当我运行这个进程时,
$ ./process1 &
显示以下信息。
[1]+ Stopped (tty input) ./process1
我无法删除getchar()
。那么如何运行这两个应用程序。
注意:尝试了 telnet/ssh 选项。如果我通过 telnet 连接,那么只有那个 telnet 窗口处于活动状态。最多我只能通过一个终端工作。
#include <stdio.h>
volatile int global_data = 0;
int main()
{
FILE *fp = NULL;
int data = 0;
printf("\n Address of global_data:%x \n", &global_data);
while(1)
{
if(global_data == 0)
{
getchar();
continue;
}
else if(global_data == 2)
{
fp = fopen("JeyTest.txt", "w+");
if(fp == NULL)
{
printf("\n Error in file creation..... \n");
break;
}
for(data = 0; data < 1000; data++)
{
fprintf(fp, "%d\n", data);
}
fclose(fp);
break;
}
}
return 0;
}