- 论坛徽章:
- 1
|
另外3.13中缓冲的事情也可以解决,你把输入输出的终端设置为非标准模式(non-canonical mode),此时也可以按键就触发SIGIO,代码如下:- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <signal.h>
- #include <time.h>
- #include <termios.h>
- static int cnt = 0;
- char buf[100];
- int l=0;
- void sigio_handler(int sig)
- {
- cnt++;
- while (l<100 && read(STDIN_FILENO, buf+l, 1) == 1) {
- l++;
- }
- int main(int argc, char **argv)
- {
- int fl = 0;
- struct termios o={0},n={0};
- setbuf(stdin, NULL);
- setbuf(stdout,NULL);
- cfmakeraw(&n);
- tcgetattr(STDIN_FILENO,&o);
- tcsetattr(STDIN_FILENO,TCSANOW,&n);
- fl = fcntl(STDIN_FILENO, F_GETFL, 0);
- fcntl(STDIN_FILENO, F_SETFL, fl | O_NONBLOCK | O_ASYNC );
- fcntl(STDIN_FILENO, F_SETOWN, getpid());
- fflush(stdin);
- fflush(stdout);
- signal(SIGIO, sigio_handler);
- time_t st=time(NULL);
- while (time(NULL) < st+5)
- {
- sleep(1);
- }
- signal(SIGIO, SIG_IGN);
- printf("\ncnt=%d,l=%d\n", cnt,l);
- int i=0;
- for (i=0; i<l; i++) {
- printf("%d,",buf[i]);
- }
- printf("\n");
- tcsetattr(STDIN_FILENO, TCSANOW, &o);
- return 0;
- }
复制代码 |
|