asynctest.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * asynctest.c: use async notification to read stdin
  3.  *
  4.  * Tested with 1.2 on the x86
  5.  * Tested with 2.0 on the x86, Sparc and Alpha
  6.  *   (but pipes don't generate async signals, tty's do)
  7.  *
  8.  * Actually, it should run with any Unix
  9.  */
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <unistd.h>
  13. #include <signal.h>
  14. #include <fcntl.h>
  15. int gotdata=0;
  16. void sighandler(int signo)
  17. {
  18.     signal(SIGIO, &sighandler); /* reinstall yourself */
  19.     if (signo==SIGIO)
  20.         gotdata++;
  21.     return;
  22. }
  23. char buffer[4096];
  24. int main(int argc, char **argv)
  25. {
  26.     int count;
  27.     signal(SIGIO, &sighandler); /* the dirty way, sigaction() is better */
  28.     fcntl(0, F_SETOWN, getpid());
  29.     fcntl(0, F_SETFL, fcntl(0, F_GETFL) | FASYNC);
  30.     while(1) {
  31.         /* this only returns if a signal arrives */
  32.         sleep(~0); /* infinite */
  33.         if (!gotdata)
  34.             continue;
  35.         count=read(0, buffer, 4096);
  36.         /* buggy: if avail data is more than 4kbytes... */
  37.         write(1,buffer,count);
  38.         gotdata=0;
  39.     }
  40. }