VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/nsprpub/pr/include/md/_openvms.h@ 5300

Last change on this file since 5300 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.4 KB
Line 
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/*
39** This is the OpenVMS machine dependant configuration file. It is based
40** on the OSF/1 machine dependant file.
41*/
42
43#ifndef nspr_openvms_defs_h___
44#define nspr_openvms_defs_h___
45
46/*
47 * Internal configuration macros
48 */
49
50#define PR_LINKER_ARCH "OpenVMS"
51#define _PR_SI_SYSNAME "OpenVMS"
52#ifdef __alpha
53#define _PR_SI_ARCHITECTURE "alpha"
54#else
55#define _PR_SI_ARCHITECTURE "vax"
56#endif
57#define PR_DLL_SUFFIX ".so"
58
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
63
64/*
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
67** happy.
68*/
69#define SA_RESTART 0
70
71/*
72** OpenVMS doesn't have these in socket.h.
73** Does in later versions!
74*/
75#if 0
76struct ip_mreq {
77 struct in_addr imr_multiaddr; /* IP multicast address of group */
78 struct in_addr imr_interface; /* local IP address of interface */
79};
80#endif
81
82/*
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
85 * into an int.
86 */
87#define _MD_MMAP_FLAGS MAP_PRIVATE|MAP_FIXED
88
89#undef HAVE_STACK_GROWING_UP
90#undef HAVE_WEAK_IO_SYMBOLS
91#undef HAVE_WEAK_MALLOC_SYMBOLS
92#undef HAVE_BSD_FLOCK
93
94#define NEED_TIME_R
95
96#define HAVE_DLL
97#define USE_DLFCN
98
99#define _PR_POLL_AVAILABLE
100#define _PR_USE_POLL
101#define _PR_STAT_HAS_ONLY_ST_ATIME
102#define _PR_NO_LARGE_FILES
103#define _PR_STRICT_ADDR_LEN
104
105/* IPv6 support */
106#ifdef _SOCKADDR_LEN
107#define _PR_HAVE_SOCKADDR_LEN
108#endif
109#define _PR_HAVE_GETIPNODEBYNAME
110#define _PR_HAVE_GETIPNODEBYADDR
111#define _PR_HAVE_GETADDRINFO
112#define _PR_INET6_PROBE
113#ifdef _PR_INET6
114#define _PR_HAVE_INET_NTOP
115#else
116#define AF_INET6 26
117#ifndef AI_CANONNAME
118#define AI_CANONNAME 0x00000002
119struct addrinfo {
120 int ai_flags;
121 int ai_family;
122 int ai_socktype;
123 int ai_protocol;
124 size_t ai_addrlen;
125 char *ai_canonname;
126 struct sockaddr *ai_addr;
127 struct addrinfo *ai_next;
128};
129#endif
130#define AI_V4MAPPED 0x00000010
131#define AI_ALL 0x00000008
132#define AI_ADDRCONFIG 0x00000020
133#endif
134
135#define _PR_HAVE_MD_SOCKADDR_IN6
136/* if we have a quadword field defined in the structure, then its length */
137/* will be a multiple of 8, and connect() won't accept 32 (it wants 28) */
138struct _md_in6_addr {
139 union {
140 PRUint8 _S6_u8[16];
141 PRUint16 _S6_u16[8];
142 PRUint32 _S6_u32[4];
143 } _S6_un;
144};
145struct _md_sockaddr_in6 {
146 PRUint16 sin6_family;
147 PRUint16 sin6_port;
148 PRUint32 sin6_flowinfo;
149 struct _md_in6_addr sin6_addr;
150 PRUint32 sin6_scope_id;
151};
152
153#undef USE_SETJMP
154
155#include <setjmp.h>
156
157/*
158 * A jmp_buf is actually a struct sigcontext. The sc_sp field of
159 * struct sigcontext is the stack pointer.
160 */
161#define _MD_GET_SP(_t) (((struct sigcontext *) (_t)->md.context)->sc_sp)
162#define PR_NUM_GCREGS _JBLEN
163#define CONTEXT(_th) ((_th)->md.context)
164
165/*
166** I am ifdef'ing these out because that's the way they are in FT.
167*/
168#ifndef __VMS
169
170/*
171** Initialize a thread context to run "_main()" when started
172*/
173#define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \
174{ \
175 *status = PR_TRUE; \
176 if (setjmp(CONTEXT(_thread))) { \
177 (*_main)(); \
178 } \
179 _MD_GET_SP(_thread) = (long) ((_sp) - 64); \
180 _MD_GET_SP(_thread) &= ~15; \
181}
182
183#define _MD_SWITCH_CONTEXT(_thread) \
184 if (!setjmp(CONTEXT(_thread))) { \
185 (_thread)->md.errcode = errno; \
186 _PR_Schedule(); \
187 }
188
189/*
190** Restore a thread context, saved by _MD_SWITCH_CONTEXT
191*/
192#define _MD_RESTORE_CONTEXT(_thread) \
193{ \
194 errno = (_thread)->md.errcode; \
195 _MD_SET_CURRENT_THREAD(_thread); \
196 longjmp(CONTEXT(_thread), 1); \
197}
198
199#endif /* __VMS */
200
201/* Machine-dependent (MD) data structures */
202
203struct _MDThread {
204 jmp_buf context;
205 int id;
206 int errcode;
207};
208
209struct _MDThreadStack {
210 PRInt8 notused;
211};
212
213struct _MDLock {
214 PRInt8 notused;
215};
216
217struct _MDSemaphore {
218 PRInt8 notused;
219};
220
221struct _MDCVar {
222 PRInt8 notused;
223};
224
225struct _MDSegment {
226 PRInt8 notused;
227};
228
229/*
230 * md-specific cpu structure field
231 */
232#define _PR_MD_MAX_OSFD FD_SETSIZE
233
234struct _MDCPU_Unix {
235 PRCList ioQ;
236 PRUint32 ioq_timeout;
237 PRInt32 ioq_max_osfd;
238 PRInt32 ioq_osfd_cnt;
239#ifndef _PR_USE_POLL
240 fd_set fd_read_set, fd_write_set, fd_exception_set;
241 PRInt16 fd_read_cnt[_PR_MD_MAX_OSFD],fd_write_cnt[_PR_MD_MAX_OSFD],
242 fd_exception_cnt[_PR_MD_MAX_OSFD];
243#else
244 struct pollfd *ioq_pollfds;
245 int ioq_pollfds_size;
246#endif /* _PR_USE_POLL */
247};
248
249#define _PR_IOQ(_cpu) ((_cpu)->md.md_unix.ioQ)
250#define _PR_ADD_TO_IOQ(_pq, _cpu) PR_APPEND_LINK(&_pq.links, &_PR_IOQ(_cpu))
251#define _PR_FD_READ_SET(_cpu) ((_cpu)->md.md_unix.fd_read_set)
252#define _PR_FD_READ_CNT(_cpu) ((_cpu)->md.md_unix.fd_read_cnt)
253#define _PR_FD_WRITE_SET(_cpu) ((_cpu)->md.md_unix.fd_write_set)
254#define _PR_FD_WRITE_CNT(_cpu) ((_cpu)->md.md_unix.fd_write_cnt)
255#define _PR_FD_EXCEPTION_SET(_cpu) ((_cpu)->md.md_unix.fd_exception_set)
256#define _PR_FD_EXCEPTION_CNT(_cpu) ((_cpu)->md.md_unix.fd_exception_cnt)
257#define _PR_IOQ_TIMEOUT(_cpu) ((_cpu)->md.md_unix.ioq_timeout)
258#define _PR_IOQ_MAX_OSFD(_cpu) ((_cpu)->md.md_unix.ioq_max_osfd)
259#define _PR_IOQ_OSFD_CNT(_cpu) ((_cpu)->md.md_unix.ioq_osfd_cnt)
260#define _PR_IOQ_POLLFDS(_cpu) ((_cpu)->md.md_unix.ioq_pollfds)
261#define _PR_IOQ_POLLFDS_SIZE(_cpu) ((_cpu)->md.md_unix.ioq_pollfds_size)
262
263#define _PR_IOQ_MIN_POLLFDS_SIZE(_cpu) 32
264
265struct _MDCPU {
266 struct _MDCPU_Unix md_unix;
267};
268
269#ifndef _PR_PTHREADS
270#define _MD_INIT_LOCKS()
271#endif
272#define _MD_NEW_LOCK(lock) PR_SUCCESS
273#define _MD_FREE_LOCK(lock)
274#define _MD_LOCK(lock)
275#define _MD_UNLOCK(lock)
276#define _MD_INIT_IO()
277#define _MD_IOQ_LOCK()
278#define _MD_IOQ_UNLOCK()
279
280/*
281 * The following are copied from _sunos.h, _aix.h. This means
282 * some of them should probably be moved into _unixos.h. But
283 * _irix.h seems to be quite different in regard to these macros.
284 */
285#define _MD_GET_INTERVAL _PR_UNIX_GetInterval
286extern PRIntervalTime _PR_UNIX_GetInterval(void);
287#define _MD_INTERVAL_PER_SEC _PR_UNIX_TicksPerSecond
288extern PRIntervalTime _PR_UNIX_TicksPerSecond(void);
289
290#define _MD_EARLY_INIT _MD_EarlyInit
291void _MD_EarlyInit(void);
292#define _MD_FINAL_INIT _PR_UnixInit
293#define _MD_INIT_RUNNING_CPU(cpu) _MD_unix_init_running_cpu(cpu)
294#define _MD_INIT_THREAD _MD_InitializeThread
295#ifdef _VMS_NOT_YET
296NSPR_API(void) _PR_InitThreads(
297 PRThreadType type, PRThreadPriority priority, PRUintn maxPTDs);
298#endif
299#define _MD_EXIT_THREAD(thread)
300#define _MD_SUSPEND_THREAD(thread)
301#define _MD_RESUME_THREAD(thread)
302#define _MD_CLEAN_THREAD(_thread)
303
304/* The following defines unwrapped versions of select() and poll(). */
305extern int __select (int, fd_set *, fd_set *, fd_set *, struct timeval *);
306#define _MD_SELECT __select
307
308#ifndef __VMS
309#define _MD_POLL __poll
310extern int __poll(struct pollfd filedes[], unsigned int nfds, int timeout);
311#endif
312
313#ifdef __VMS
314NSPR_API(void) _PR_InitCPUs(void);
315NSPR_API(void) _PR_MD_START_INTERRUPTS(void);
316#endif
317
318/*
319 * Atomic operations
320 */
321#include <machine/builtins.h>
322#define _PR_HAVE_ATOMIC_OPS
323#define _MD_INIT_ATOMIC()
324#define _MD_ATOMIC_ADD(ptr,val) (__ATOMIC_ADD_LONG(ptr,val) + val)
325#define _MD_ATOMIC_INCREMENT(val) (__ATOMIC_INCREMENT_LONG(val) + 1)
326#define _MD_ATOMIC_DECREMENT(val) (__ATOMIC_DECREMENT_LONG(val) - 1)
327#define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
328
329extern int thread_suspend(PRThread *thr_id);
330extern int thread_resume(PRThread *thr_id);
331
332#endif /* nspr_openvms_defs_h___ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette