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
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/
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
15 * The Original Code is the Netscape Portable Runtime (NSPR).
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.
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.
36 * ***** END LICENSE BLOCK ***** */
39 ** This is the OpenVMS machine dependant configuration file. It is based
40 ** on the OSF/1 machine dependant file.
43 #ifndef nspr_openvms_defs_h___
44 #define nspr_openvms_defs_h___
47 * Internal configuration macros
50 #define PR_LINKER_ARCH "OpenVMS"
51 #define _PR_SI_SYSNAME "OpenVMS"
53 #define _PR_SI_ARCHITECTURE "alpha"
55 #define _PR_SI_ARCHITECTURE "vax"
57 #define PR_DLL_SUFFIX ".so"
59 #define _PR_VMBASE 0x30000000
60 #define _PR_STACK_VMBASE 0x50000000
61 #define _MD_DEFAULT_STACK_SIZE 131072L
62 #define _MD_MINIMUM_STACK_SIZE 131072L
65 ** This is not defined on OpenVMS. I believe its only used in GC code, and
66 ** isn't that only used in Java? Anyway, for now, let's keep the compiler
72 ** OpenVMS doesn't have these in socket.h.
73 ** Does in later versions!
77 struct in_addr imr_multiaddr
; /* IP multicast address of group */
78 struct in_addr imr_interface
; /* local IP address of interface */
83 * OSF1 needs the MAP_FIXED flag to ensure that mmap returns a pointer
84 * with the upper 32 bits zero. This is because Java sticks a pointer
87 #define _MD_MMAP_FLAGS MAP_PRIVATE|MAP_FIXED
89 #undef HAVE_STACK_GROWING_UP
90 #undef HAVE_WEAK_IO_SYMBOLS
91 #undef HAVE_WEAK_MALLOC_SYMBOLS
99 #define _PR_POLL_AVAILABLE
101 #define _PR_STAT_HAS_ONLY_ST_ATIME
102 #define _PR_NO_LARGE_FILES
103 #define _PR_STRICT_ADDR_LEN
104 #define _PR_NEED_SECRET_AF
108 #define _PR_HAVE_SOCKADDR_LEN
110 #define _PR_HAVE_GETIPNODEBYNAME
111 #define _PR_HAVE_GETIPNODEBYADDR
112 #define _PR_HAVE_GETADDRINFO
113 #define _PR_INET6_PROBE
115 #define _PR_HAVE_INET_NTOP
119 #define AI_CANONNAME 0x00000002
127 struct sockaddr
*ai_addr
;
128 struct addrinfo
*ai_next
;
131 #define AI_V4MAPPED 0x00000010
132 #define AI_ALL 0x00000008
133 #define AI_ADDRCONFIG 0x00000020
136 #define _PR_HAVE_MD_SOCKADDR_IN6
137 /* if we have a quadword field defined in the structure, then its length */
138 /* will be a multiple of 8, and connect() won't accept 32 (it wants 28) */
139 struct _md_in6_addr
{
146 struct _md_sockaddr_in6
{
147 PRUint16 sin6_family
;
149 PRUint32 sin6_flowinfo
;
150 struct _md_in6_addr sin6_addr
;
151 PRUint32 sin6_scope_id
;
159 * A jmp_buf is actually a struct sigcontext. The sc_sp field of
160 * struct sigcontext is the stack pointer.
162 #define _MD_GET_SP(_t) (((struct sigcontext *) (_t)->md.context)->sc_sp)
163 #define PR_NUM_GCREGS _JBLEN
164 #define CONTEXT(_th) ((_th)->md.context)
167 ** I am ifdef'ing these out because that's the way they are in FT.
172 ** Initialize a thread context to run "_main()" when started
174 #define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \
177 if (setjmp(CONTEXT(_thread))) { \
180 _MD_GET_SP(_thread) = (long) ((_sp) - 64); \
181 _MD_GET_SP(_thread) &= ~15; \
184 #define _MD_SWITCH_CONTEXT(_thread) \
185 if (!setjmp(CONTEXT(_thread))) { \
186 (_thread)->md.errcode = errno; \
191 ** Restore a thread context, saved by _MD_SWITCH_CONTEXT
193 #define _MD_RESTORE_CONTEXT(_thread) \
195 errno = (_thread)->md.errcode; \
196 _MD_SET_CURRENT_THREAD(_thread); \
197 longjmp(CONTEXT(_thread), 1); \
202 /* Machine-dependent (MD) data structures */
210 struct _MDThreadStack
{
218 struct _MDSemaphore
{
231 * md-specific cpu structure field
233 #define _PR_MD_MAX_OSFD FD_SETSIZE
237 PRUint32 ioq_timeout
;
238 PRInt32 ioq_max_osfd
;
239 PRInt32 ioq_osfd_cnt
;
241 fd_set fd_read_set
, fd_write_set
, fd_exception_set
;
242 PRInt16 fd_read_cnt
[_PR_MD_MAX_OSFD
],fd_write_cnt
[_PR_MD_MAX_OSFD
],
243 fd_exception_cnt
[_PR_MD_MAX_OSFD
];
245 struct pollfd
*ioq_pollfds
;
246 int ioq_pollfds_size
;
247 #endif /* _PR_USE_POLL */
250 #define _PR_IOQ(_cpu) ((_cpu)->md.md_unix.ioQ)
251 #define _PR_ADD_TO_IOQ(_pq, _cpu) PR_APPEND_LINK(&_pq.links, &_PR_IOQ(_cpu))
252 #define _PR_FD_READ_SET(_cpu) ((_cpu)->md.md_unix.fd_read_set)
253 #define _PR_FD_READ_CNT(_cpu) ((_cpu)->md.md_unix.fd_read_cnt)
254 #define _PR_FD_WRITE_SET(_cpu) ((_cpu)->md.md_unix.fd_write_set)
255 #define _PR_FD_WRITE_CNT(_cpu) ((_cpu)->md.md_unix.fd_write_cnt)
256 #define _PR_FD_EXCEPTION_SET(_cpu) ((_cpu)->md.md_unix.fd_exception_set)
257 #define _PR_FD_EXCEPTION_CNT(_cpu) ((_cpu)->md.md_unix.fd_exception_cnt)
258 #define _PR_IOQ_TIMEOUT(_cpu) ((_cpu)->md.md_unix.ioq_timeout)
259 #define _PR_IOQ_MAX_OSFD(_cpu) ((_cpu)->md.md_unix.ioq_max_osfd)
260 #define _PR_IOQ_OSFD_CNT(_cpu) ((_cpu)->md.md_unix.ioq_osfd_cnt)
261 #define _PR_IOQ_POLLFDS(_cpu) ((_cpu)->md.md_unix.ioq_pollfds)
262 #define _PR_IOQ_POLLFDS_SIZE(_cpu) ((_cpu)->md.md_unix.ioq_pollfds_size)
264 #define _PR_IOQ_MIN_POLLFDS_SIZE(_cpu) 32
267 struct _MDCPU_Unix md_unix
;
271 #define _MD_INIT_LOCKS()
273 #define _MD_NEW_LOCK(lock) PR_SUCCESS
274 #define _MD_FREE_LOCK(lock)
275 #define _MD_LOCK(lock)
276 #define _MD_UNLOCK(lock)
277 #define _MD_INIT_IO()
278 #define _MD_IOQ_LOCK()
279 #define _MD_IOQ_UNLOCK()
282 * The following are copied from _sunos.h, _aix.h. This means
283 * some of them should probably be moved into _unixos.h. But
284 * _irix.h seems to be quite different in regard to these macros.
286 #define _MD_GET_INTERVAL _PR_UNIX_GetInterval
287 extern PRIntervalTime
_PR_UNIX_GetInterval(void);
288 #define _MD_INTERVAL_PER_SEC _PR_UNIX_TicksPerSecond
289 extern PRIntervalTime
_PR_UNIX_TicksPerSecond(void);
291 #define _MD_EARLY_INIT _MD_EarlyInit
292 void _MD_EarlyInit(void);
293 #define _MD_FINAL_INIT _PR_UnixInit
294 #define _MD_INIT_RUNNING_CPU(cpu) _MD_unix_init_running_cpu(cpu)
295 #define _MD_INIT_THREAD _MD_InitializeThread
297 NSPR_API(void) _PR_InitThreads(
298 PRThreadType type
, PRThreadPriority priority
, PRUintn maxPTDs
);
300 #define _MD_EXIT_THREAD(thread)
301 #define _MD_SUSPEND_THREAD(thread)
302 #define _MD_RESUME_THREAD(thread)
303 #define _MD_CLEAN_THREAD(_thread)
305 /* The following defines unwrapped versions of select() and poll(). */
306 extern int __select (int, fd_set
*, fd_set
*, fd_set
*, struct timeval
*);
307 #define _MD_SELECT __select
310 #define _MD_POLL __poll
311 extern int __poll(struct pollfd filedes
[], unsigned int nfds
, int timeout
);
315 NSPR_API(void) _PR_InitCPUs(void);
316 NSPR_API(void) _PR_MD_START_INTERRUPTS(void);
322 #include <machine/builtins.h>
323 #define _PR_HAVE_ATOMIC_OPS
324 #define _MD_INIT_ATOMIC()
325 #define _MD_ATOMIC_ADD(ptr,val) (__ATOMIC_ADD_LONG(ptr,val) + val)
326 #define _MD_ATOMIC_INCREMENT(val) (__ATOMIC_INCREMENT_LONG(val) + 1)
327 #define _MD_ATOMIC_DECREMENT(val) (__ATOMIC_DECREMENT_LONG(val) - 1)
328 #define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
330 extern int thread_suspend(PRThread
*thr_id
);
331 extern int thread_resume(PRThread
*thr_id
);
333 #endif /* nspr_openvms_defs_h___ */