这个节目
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <windows.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
void INThandler(int);
int main(void)
{
signal(SIGINT, INThandler);
char data[128];
int n;
while((n=read(0, data, 128)) > 0)
{
if(data[n] = '\n') break;
}
data[n] ='\0';
printf("%s", data);
return 0;
}
void INThandler(int sig)
{
char c;
signal(sig, SIG_IGN);
printf("OUCH, did you hit Ctrl-C?\n"
"Do you really want to quit? [y/n] ");
c = getchar();
if (c == 'y' || c == 'Y')
exit(0);
else
signal(SIGINT, INThandler);
}
不处理 ctrl-c,但在该输入处终止。如果我替换处理程序安装和返回之间的所有内容
while (1)
Sleep(1);
处理程序函数被调用并且可以工作,但我想在那里有 read() 。
编辑:回顾这个程序,我注意到我有
if(data[n] = '\n') break;
我写了'='而不是'==',但是通过使用后者,它不能正常工作,我不明白为什么。不应该是检测'\n'的比较吗?另外,我弄乱了缓冲区,但是如果按 CTRL-C,我就无法保留输入。