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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * nbtest.c: read and write in non-blocking mode
  3.  *
  4.  * Tested with 1.2 on the x86
  5.  *
  6.  * Actually, it should run with any Unix
  7.  */
  8. #include <stdio.h>
  9. #include <unistd.h>
  10. #include <fcntl.h>
  11. #include <stdlib.h>
  12. #include <errno.h>
  13. char buffer[4096];
  14. int main(int argc, char **argv)
  15. {
  16.     int delay=1, n, m=0;
  17.     if (argc>1) delay=atoi(argv[1]);
  18.     fcntl(0, F_SETFL, fcntl(0,F_GETFL) | O_NONBLOCK); /* stdin */
  19.     fcntl(1, F_SETFL, fcntl(1,F_GETFL) | O_NONBLOCK); /* stdout */
  20.     while (1) {
  21.         n=read(0, buffer, 4096);
  22.         if (n>=0)
  23.             m=write(1, buffer, n);
  24.         if ((n<0 || m<0) && (errno != EAGAIN))
  25.             break;
  26.         sleep(delay);
  27.     }
  28.     perror( n<0 ? "stdin" : "stdout");
  29.     exit(1);
  30. }