_openvms.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is the Netscape Portable Runtime (NSPR).
  16. *
  17. * The Initial Developer of the Original Code is
  18. * Netscape Communications Corporation.
  19. * Portions created by the Initial Developer are Copyright (C) 1998-2000
  20. * the Initial Developer. All Rights Reserved.
  21. *
  22. * Contributor(s):
  23. *
  24. * Alternatively, the contents of this file may be used under the terms of
  25. * either the GNU General Public License Version 2 or later (the "GPL"), or
  26. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27. * in which case the provisions of the GPL or the LGPL are applicable instead
  28. * of those above. If you wish to allow use of your version of this file only
  29. * under the terms of either the GPL or the LGPL, and not to allow others to
  30. * use your version of this file under the terms of the MPL, indicate your
  31. * decision by deleting the provisions above and replace them with the notice
  32. * and other provisions required by the GPL or the LGPL. If you do not delete
  33. * the provisions above, a recipient may use your version of this file under
  34. * the terms of any one of the MPL, the GPL or the LGPL.
  35. *
  36. * ***** END LICENSE BLOCK ***** */
  37. /*
  38. ** This is the OpenVMS machine dependant configuration file. It is based
  39. ** on the OSF/1 machine dependant file.
  40. */
  41. #ifndef nspr_openvms_defs_h___
  42. #define nspr_openvms_defs_h___
  43. /*
  44. * Internal configuration macros
  45. */
  46. #define PR_LINKER_ARCH "OpenVMS"
  47. #define _PR_SI_SYSNAME "OpenVMS"
  48. #ifdef __alpha
  49. #define _PR_SI_ARCHITECTURE "alpha"
  50. #else
  51. #define _PR_SI_ARCHITECTURE "vax"
  52. #endif
  53. #define PR_DLL_SUFFIX ".so"
  54. #define _PR_VMBASE 0x30000000
  55. #define _PR_STACK_VMBASE 0x50000000
  56. #define _MD_DEFAULT_STACK_SIZE 131072L
  57. #define _MD_MINIMUM_STACK_SIZE 131072L
  58. /*
  59. ** This is not defined on OpenVMS. I believe its only used in GC code, and
  60. ** isn't that only used in Java? Anyway, for now, let's keep the compiler
  61. ** happy.
  62. */
  63. #define SA_RESTART 0
  64. /*
  65. ** OpenVMS doesn't have these in socket.h.
  66. ** Does in later versions!
  67. */
  68. #if 0
  69. struct ip_mreq {
  70. struct in_addr imr_multiaddr; /* IP multicast address of group */
  71. struct in_addr imr_interface; /* local IP address of interface */
  72. };
  73. #endif
  74. /*
  75. * OSF1 needs the MAP_FIXED flag to ensure that mmap returns a pointer
  76. * with the upper 32 bits zero. This is because Java sticks a pointer
  77. * into an int.
  78. */
  79. #define _MD_MMAP_FLAGS MAP_PRIVATE|MAP_FIXED
  80. #undef HAVE_STACK_GROWING_UP
  81. #undef HAVE_WEAK_IO_SYMBOLS
  82. #undef HAVE_WEAK_MALLOC_SYMBOLS
  83. #undef HAVE_BSD_FLOCK
  84. #define NEED_TIME_R
  85. #define HAVE_DLL
  86. #define USE_DLFCN
  87. #define _PR_POLL_AVAILABLE
  88. #define _PR_USE_POLL
  89. #define _PR_STAT_HAS_ONLY_ST_ATIME
  90. #define _PR_NO_LARGE_FILES
  91. #define _PR_STRICT_ADDR_LEN
  92. /* IPv6 support */
  93. #ifdef _SOCKADDR_LEN
  94. #define _PR_HAVE_SOCKADDR_LEN
  95. #endif
  96. #define _PR_HAVE_GETIPNODEBYNAME
  97. #define _PR_HAVE_GETIPNODEBYADDR
  98. #define _PR_HAVE_GETADDRINFO
  99. #define _PR_INET6_PROBE
  100. #ifdef _PR_INET6
  101. #define _PR_HAVE_INET_NTOP
  102. #else
  103. #define AF_INET6 26
  104. #ifndef AI_CANONNAME
  105. #define AI_CANONNAME 0x00000002
  106. struct addrinfo {
  107. int ai_flags;
  108. int ai_family;
  109. int ai_socktype;
  110. int ai_protocol;
  111. size_t ai_addrlen;
  112. char *ai_canonname;
  113. struct sockaddr *ai_addr;
  114. struct addrinfo *ai_next;
  115. };
  116. #endif
  117. #define AI_V4MAPPED 0x00000010
  118. #define AI_ALL 0x00000008
  119. #define AI_ADDRCONFIG 0x00000020
  120. #endif
  121. #define _PR_HAVE_MD_SOCKADDR_IN6
  122. /* if we have a quadword field defined in the structure, then its length */
  123. /* will be a multiple of 8, and connect() won't accept 32 (it wants 28) */
  124. struct _md_in6_addr {
  125. union {
  126. PRUint8 _S6_u8[16];
  127. PRUint16 _S6_u16[8];
  128. PRUint32 _S6_u32[4];
  129. } _S6_un;
  130. };
  131. struct _md_sockaddr_in6 {
  132. PRUint16 sin6_family;
  133. PRUint16 sin6_port;
  134. PRUint32 sin6_flowinfo;
  135. struct _md_in6_addr sin6_addr;
  136. PRUint32 sin6_scope_id;
  137. };
  138. #undef USE_SETJMP
  139. #include <setjmp.h>
  140. /*
  141. * A jmp_buf is actually a struct sigcontext. The sc_sp field of
  142. * struct sigcontext is the stack pointer.
  143. */
  144. #define _MD_GET_SP(_t) (((struct sigcontext *) (_t)->md.context)->sc_sp)
  145. #define PR_NUM_GCREGS _JBLEN
  146. #define CONTEXT(_th) ((_th)->md.context)
  147. /*
  148. ** I am ifdef'ing these out because that's the way they are in FT.
  149. */
  150. #ifndef __VMS
  151. /*
  152. ** Initialize a thread context to run "_main()" when started
  153. */
  154. #define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \
  155. { \
  156. *status = PR_TRUE; \
  157. if (setjmp(CONTEXT(_thread))) { \
  158. (*_main)(); \
  159. } \
  160. _MD_GET_SP(_thread) = (long) ((_sp) - 64); \
  161. _MD_GET_SP(_thread) &= ~15; \
  162. }
  163. #define _MD_SWITCH_CONTEXT(_thread) \
  164. if (!setjmp(CONTEXT(_thread))) { \
  165. (_thread)->md.errcode = errno; \
  166. _PR_Schedule(); \
  167. }
  168. /*
  169. ** Restore a thread context, saved by _MD_SWITCH_CONTEXT
  170. */
  171. #define _MD_RESTORE_CONTEXT(_thread) \
  172. { \
  173. errno = (_thread)->md.errcode; \
  174. _MD_SET_CURRENT_THREAD(_thread); \
  175. longjmp(CONTEXT(_thread), 1); \
  176. }
  177. #endif /* __VMS */
  178. /* Machine-dependent (MD) data structures */
  179. struct _MDThread {
  180. jmp_buf context;
  181. int id;
  182. int errcode;
  183. };
  184. struct _MDThreadStack {
  185. PRInt8 notused;
  186. };
  187. struct _MDLock {
  188. PRInt8 notused;
  189. };
  190. struct _MDSemaphore {
  191. PRInt8 notused;
  192. };
  193. struct _MDCVar {
  194. PRInt8 notused;
  195. };
  196. struct _MDSegment {
  197. PRInt8 notused;
  198. };
  199. /*
  200. * md-specific cpu structure field
  201. */
  202. #define _PR_MD_MAX_OSFD FD_SETSIZE
  203. struct _MDCPU_Unix {
  204. PRCList ioQ;
  205. PRUint32 ioq_timeout;
  206. PRInt32 ioq_max_osfd;
  207. PRInt32 ioq_osfd_cnt;
  208. #ifndef _PR_USE_POLL
  209. fd_set fd_read_set, fd_write_set, fd_exception_set;
  210. PRInt16 fd_read_cnt[_PR_MD_MAX_OSFD],fd_write_cnt[_PR_MD_MAX_OSFD],
  211. fd_exception_cnt[_PR_MD_MAX_OSFD];
  212. #else
  213. struct pollfd *ioq_pollfds;
  214. int ioq_pollfds_size;
  215. #endif /* _PR_USE_POLL */
  216. };
  217. #define _PR_IOQ(_cpu) ((_cpu)->md.md_unix.ioQ)
  218. #define _PR_ADD_TO_IOQ(_pq, _cpu) PR_APPEND_LINK(&_pq.links, &_PR_IOQ(_cpu))
  219. #define _PR_FD_READ_SET(_cpu) ((_cpu)->md.md_unix.fd_read_set)
  220. #define _PR_FD_READ_CNT(_cpu) ((_cpu)->md.md_unix.fd_read_cnt)
  221. #define _PR_FD_WRITE_SET(_cpu) ((_cpu)->md.md_unix.fd_write_set)
  222. #define _PR_FD_WRITE_CNT(_cpu) ((_cpu)->md.md_unix.fd_write_cnt)
  223. #define _PR_FD_EXCEPTION_SET(_cpu) ((_cpu)->md.md_unix.fd_exception_set)
  224. #define _PR_FD_EXCEPTION_CNT(_cpu) ((_cpu)->md.md_unix.fd_exception_cnt)
  225. #define _PR_IOQ_TIMEOUT(_cpu) ((_cpu)->md.md_unix.ioq_timeout)
  226. #define _PR_IOQ_MAX_OSFD(_cpu) ((_cpu)->md.md_unix.ioq_max_osfd)
  227. #define _PR_IOQ_OSFD_CNT(_cpu) ((_cpu)->md.md_unix.ioq_osfd_cnt)
  228. #define _PR_IOQ_POLLFDS(_cpu) ((_cpu)->md.md_unix.ioq_pollfds)
  229. #define _PR_IOQ_POLLFDS_SIZE(_cpu) ((_cpu)->md.md_unix.ioq_pollfds_size)
  230. #define _PR_IOQ_MIN_POLLFDS_SIZE(_cpu) 32
  231. struct _MDCPU {
  232. struct _MDCPU_Unix md_unix;
  233. };
  234. #ifndef _PR_PTHREADS
  235. #define _MD_INIT_LOCKS()
  236. #endif
  237. #define _MD_NEW_LOCK(lock) PR_SUCCESS
  238. #define _MD_FREE_LOCK(lock)
  239. #define _MD_LOCK(lock)
  240. #define _MD_UNLOCK(lock)
  241. #define _MD_INIT_IO()
  242. #define _MD_IOQ_LOCK()
  243. #define _MD_IOQ_UNLOCK()
  244. /*
  245. * The following are copied from _sunos.h, _aix.h. This means
  246. * some of them should probably be moved into _unixos.h. But
  247. * _irix.h seems to be quite different in regard to these macros.
  248. */
  249. #define _MD_GET_INTERVAL _PR_UNIX_GetInterval
  250. extern PRIntervalTime _PR_UNIX_GetInterval(void);
  251. #define _MD_INTERVAL_PER_SEC _PR_UNIX_TicksPerSecond
  252. extern PRIntervalTime _PR_UNIX_TicksPerSecond(void);
  253. #define _MD_EARLY_INIT _MD_EarlyInit
  254. void _MD_EarlyInit(void);
  255. #define _MD_FINAL_INIT _PR_UnixInit
  256. #define _MD_INIT_RUNNING_CPU(cpu) _MD_unix_init_running_cpu(cpu)
  257. #define _MD_INIT_THREAD _MD_InitializeThread
  258. #ifdef _VMS_NOT_YET
  259. NSPR_API(void) _PR_InitThreads(
  260. PRThreadType type, PRThreadPriority priority, PRUintn maxPTDs);
  261. #endif
  262. #define _MD_EXIT_THREAD(thread)
  263. #define _MD_SUSPEND_THREAD(thread)
  264. #define _MD_RESUME_THREAD(thread)
  265. #define _MD_CLEAN_THREAD(_thread)
  266. /* The following defines unwrapped versions of select() and poll(). */
  267. extern int __select (int, fd_set *, fd_set *, fd_set *, struct timeval *);
  268. #define _MD_SELECT __select
  269. #ifndef __VMS
  270. #define _MD_POLL __poll
  271. extern int __poll(struct pollfd filedes[], unsigned int nfds, int timeout);
  272. #endif
  273. #ifdef __VMS
  274. NSPR_API(void) _PR_InitCPUs(void);
  275. NSPR_API(void) _PR_MD_START_INTERRUPTS(void);
  276. #endif
  277. /*
  278. * Atomic operations
  279. */
  280. #include <machine/builtins.h>
  281. #define _PR_HAVE_ATOMIC_OPS
  282. #define _MD_INIT_ATOMIC()
  283. #define _MD_ATOMIC_ADD(ptr,val) (__ATOMIC_ADD_LONG(ptr,val) + val)
  284. #define _MD_ATOMIC_INCREMENT(val) (__ATOMIC_INCREMENT_LONG(val) + 1)
  285. #define _MD_ATOMIC_DECREMENT(val) (__ATOMIC_DECREMENT_LONG(val) - 1)
  286. #define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
  287. extern int thread_suspend(PRThread *thr_id);
  288. extern int thread_resume(PRThread *thr_id);
  289. #endif /* nspr_openvms_defs_h___ */