Xos.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. *
  3. Copyright 1987, 1998 The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. *
  21. * The X Window System is a Trademark of The Open Group.
  22. *
  23. */
  24. /* This is a collection of things to try and minimize system dependencies
  25. * in a "significant" number of source files.
  26. */
  27. #ifndef _XOS_H_
  28. # define _XOS_H_
  29. # include <X11/Xosdefs.h>
  30. /*
  31. * Get major data types (esp. caddr_t)
  32. */
  33. # include <sys/types.h>
  34. # if defined(__SCO__) || defined(__UNIXWARE__)
  35. # include <stdint.h>
  36. # endif
  37. /*
  38. * Just about everyone needs the strings routines. We provide both forms here,
  39. * index/rindex and strchr/strrchr, so any systems that don't provide them all
  40. * need to have #defines here.
  41. *
  42. * These macros are defined this way, rather than, e.g.:
  43. * #defined index(s,c) strchr(s,c)
  44. * because someone might be using them as function pointers, and such
  45. * a change would break compatibility for anyone who's relying on them
  46. * being the way they currently are. So we're stuck with them this way,
  47. * which can be really inconvenient. :-(
  48. */
  49. # include <string.h>
  50. # if defined(__SCO__) || defined(__UNIXWARE__) || defined(__sun) || defined(__CYGWIN__) || defined(_AIX) || defined(__APPLE__)
  51. # include <strings.h>
  52. # else
  53. # ifndef index
  54. # define index(s,c) (strchr((s),(c)))
  55. # endif
  56. # ifndef rindex
  57. # define rindex(s,c) (strrchr((s),(c)))
  58. # endif
  59. # endif
  60. /*
  61. * Get open(2) constants
  62. */
  63. # if defined(X_NOT_POSIX)
  64. # include <fcntl.h>
  65. # if defined(USL) || defined(__i386__) && (defined(SYSV) || defined(SVR4))
  66. # include <unistd.h>
  67. # endif
  68. # ifdef WIN32
  69. # include <X11/Xw32defs.h>
  70. # else
  71. # include <sys/file.h>
  72. # endif
  73. # else /* X_NOT_POSIX */
  74. # include <fcntl.h>
  75. # include <unistd.h>
  76. # endif /* X_NOT_POSIX else */
  77. /*
  78. * Get struct timeval and struct tm
  79. */
  80. # if defined(_POSIX_SOURCE) && defined(SVR4)
  81. /* need to omit _POSIX_SOURCE in order to get what we want in SVR4 */
  82. # undef _POSIX_SOURCE
  83. # include <sys/time.h>
  84. # define _POSIX_SOURCE
  85. # elif defined(WIN32)
  86. # include <time.h>
  87. # if !defined(_WINSOCKAPI_) && !defined(_WILLWINSOCK_) && !defined(_TIMEVAL_DEFINED) && !defined(_STRUCT_TIMEVAL)
  88. struct timeval {
  89. long tv_sec; /* seconds */
  90. long tv_usec; /* and microseconds */
  91. };
  92. # define _TIMEVAL_DEFINED
  93. # endif
  94. # include <sys/timeb.h>
  95. # define gettimeofday(t) \
  96. { \
  97. struct _timeb _gtodtmp; \
  98. _ftime (&_gtodtmp); \
  99. (t)->tv_sec = _gtodtmp.time; \
  100. (t)->tv_usec = _gtodtmp.millitm * 1000; \
  101. }
  102. # else
  103. # include <sys/time.h>
  104. # include <time.h>
  105. # endif /* defined(_POSIX_SOURCE) && defined(SVR4) */
  106. /* define X_GETTIMEOFDAY macro, a portable gettimeofday() */
  107. # if defined(_XOPEN_XPG4) || defined(_XOPEN_UNIX) /* _XOPEN_UNIX is XPG4.2 */
  108. # define X_GETTIMEOFDAY(t) gettimeofday(t, (struct timezone*)0)
  109. # else
  110. # if defined(SVR4) || defined(__SVR4) || defined(WIN32)
  111. # define X_GETTIMEOFDAY(t) gettimeofday(t)
  112. # else
  113. # define X_GETTIMEOFDAY(t) gettimeofday(t, (struct timezone*)0)
  114. # endif
  115. # endif /* XPG4 else */
  116. # ifdef __GNU__
  117. # define PATH_MAX 4096
  118. # define MAXPATHLEN 4096
  119. # define OPEN_MAX 256 /* We define a reasonable limit. */
  120. # endif
  121. /* use POSIX name for signal */
  122. # if defined(X_NOT_POSIX) && defined(SYSV) && !defined(SIGCHLD)
  123. # define SIGCHLD SIGCLD
  124. # endif
  125. # include <X11/Xarch.h>
  126. #endif /* _XOS_H_ */