uio.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== uio.h ============================================================
  2.  * Copyright (c) 1994 by Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Description : Correct HP-UX header file.
  5.  */
  6. #ifndef _PTHREAD_UIO_H_
  7. #define _PTHREAD_UIO_H_
  8. #include <sys/cdefs.h>
  9. struct iovec {
  10. void  *iov_base;
  11. size_t iov_len;
  12. };
  13. __BEGIN_DECLS
  14. int  readv __P_((int, const struct iovec *, int)); 
  15. int  writev __P_((int, const struct iovec *, int));
  16. __END_DECLS
  17. #endif