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

嵌入式Linux

开发平台:

C/C++

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