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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * nbtest.c: read and write in non-blocking mode
  3.  * This should run with any Unix
  4.  *
  5.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  6.  * Copyright (C) 2001 O'Reilly & Associates
  7.  *
  8.  * The source code in this file can be freely used, adapted,
  9.  * and redistributed in source or binary form, so long as an
  10.  * acknowledgment appears in derived source files.  The citation
  11.  * should list that the code comes from the book "Linux Device
  12.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  13.  * by O'Reilly & Associates.   No warranty is attached;
  14.  * we cannot take responsibility for errors or fitness for use.
  15.  */
  16. #include <stdio.h>
  17. #include <unistd.h>
  18. #include <fcntl.h>
  19. #include <stdlib.h>
  20. #include <errno.h>
  21. char buffer[4096];
  22. int main(int argc, char **argv)
  23. {
  24.     int delay=1, n, m=0;
  25.     if (argc>1) delay=atoi(argv[1]);
  26.     fcntl(0, F_SETFL, fcntl(0,F_GETFL) | O_NONBLOCK); /* stdin */
  27.     fcntl(1, F_SETFL, fcntl(1,F_GETFL) | O_NONBLOCK); /* stdout */
  28.     while (1) {
  29.         n=read(0, buffer, 4096);
  30.         if (n>=0)
  31.             m=write(1, buffer, n);
  32.         if ((n<0 || m<0) && (errno != EAGAIN))
  33.             break;
  34.         sleep(delay);
  35.     }
  36.     perror( n<0 ? "stdin" : "stdout");
  37.     exit(1);
  38. }