uio.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __LINUX_UIO_H
  2. #define __LINUX_UIO_H
  3. #include <linux/types.h>
  4. /*
  5.  * Berkeley style UIO structures - Alan Cox 1994.
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  */
  12. /* A word of warning: Our uio structure will clash with the C library one (which is now obsolete). Remove the C
  13.    library one from sys/uio.h if you have a very old library set */
  14. struct iovec
  15. {
  16. void *iov_base; /* BSD uses caddr_t (1003.1g requires void *) */
  17. __kernel_size_t iov_len; /* Must be size_t (1003.1g) */
  18. };
  19. /*
  20.  * UIO_MAXIOV shall be at least 16 1003.1g (5.4.1.1)
  21.  */
  22.  
  23. #define UIO_FASTIOV 8
  24. #define UIO_MAXIOV 1024
  25. #if 0
  26. #define UIO_MAXIOV 16 /* Maximum iovec's in one operation 
  27.    16 matches BSD */
  28.                                 /* Beg pardon: BSD has 1024 --ANK */
  29. #endif
  30. #endif