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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== posix.h ============================================================
  2.  * Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Description : Convert an Ultrix-4.2 system to a more or less POSIX system.
  5.  *
  6.  * $Id$
  7.  *
  8.  *  1.00 93/07/20 proven
  9.  *      -Started coding this file.
  10.  */
  11. #ifndef _PTHREAD_POSIX_H_
  12. #define _PTHREAD_POSIX_H_
  13. #include <sys/cdefs.h>
  14. /* More stuff for compiling */
  15. #if defined(__GNUC__)
  16. #define __INLINE                extern inline
  17. #else
  18. #define __INLINE                static
  19. #endif
  20. /* Make sure we have size_t defined */
  21. #include <pthread/types.h>
  22. #define __NORETURN
  23. #ifndef __WAIT_STATUS
  24. #define __WAIT_STATUS int *
  25. #endif
  26. #endif