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 | #ifndef nspr_solaris_defs_h___
|
---|
39 | #define nspr_solaris_defs_h___
|
---|
40 |
|
---|
41 | /*
|
---|
42 | * Internal configuration macros
|
---|
43 | */
|
---|
44 |
|
---|
45 | #define PR_LINKER_ARCH "solaris"
|
---|
46 | #define _PR_SI_SYSNAME "SOLARIS"
|
---|
47 | #ifdef sparc
|
---|
48 | #define _PR_SI_ARCHITECTURE "sparc"
|
---|
49 | #elif defined(i386)
|
---|
50 | #define _PR_SI_ARCHITECTURE "x86"
|
---|
51 | #elif defined(__x86_64)
|
---|
52 | #define _PR_SI_ARCHITECTURE "x86-64"
|
---|
53 | #else
|
---|
54 | #error unknown processor
|
---|
55 | #endif
|
---|
56 | #define PR_DLL_SUFFIX ".so"
|
---|
57 |
|
---|
58 | #define _PR_VMBASE 0x30000000
|
---|
59 | #define _PR_STACK_VMBASE 0x50000000
|
---|
60 | #define _MD_DEFAULT_STACK_SIZE (2*65536L)
|
---|
61 | #define _MD_MMAP_FLAGS MAP_SHARED
|
---|
62 |
|
---|
63 | #undef HAVE_STACK_GROWING_UP
|
---|
64 |
|
---|
65 | #ifndef HAVE_WEAK_IO_SYMBOLS
|
---|
66 | #define HAVE_WEAK_IO_SYMBOLS
|
---|
67 | #endif
|
---|
68 |
|
---|
69 | #undef HAVE_WEAK_MALLOC_SYMBOLS
|
---|
70 | #define HAVE_DLL
|
---|
71 | #define USE_DLFCN
|
---|
72 | #define NEED_STRFTIME_LOCK
|
---|
73 |
|
---|
74 | #if defined(_LARGEFILE64_SOURCE) /* vbox */
|
---|
75 | #define _PR_HAVE_OFF64_T /* vbox */
|
---|
76 | #elif defined(_LP64) || _FILE_OFFSET_BITS == 32 /* vbox */
|
---|
77 | #define _PR_HAVE_LARGE_OFF_T /* vbox */
|
---|
78 | #else /* vbox */
|
---|
79 | #define _PR_NO_LARGE_FILES /* vbox */
|
---|
80 | #endif /* vbox */
|
---|
81 |
|
---|
82 |
|
---|
83 | /*
|
---|
84 | * Intel x86 has atomic instructions.
|
---|
85 | *
|
---|
86 | * Sparc v8 does not have instructions to efficiently implement
|
---|
87 | * atomic increment/decrement operations. In the local threads
|
---|
88 | * only and pthreads versions, we use the default atomic routine
|
---|
89 | * implementation in pratom.c. The obsolete global threads only
|
---|
90 | * version uses a global mutex_t to implement the atomic routines
|
---|
91 | * in solaris.c, which is actually equivalent to the default
|
---|
92 | * implementation.
|
---|
93 | *
|
---|
94 | * 64-bit Solaris requires sparc v9, which has atomic instructions.
|
---|
95 | */
|
---|
96 | #if defined(i386) || defined(IS_64)
|
---|
97 | #define _PR_HAVE_ATOMIC_OPS
|
---|
98 | #endif
|
---|
99 |
|
---|
100 | #if defined(_PR_PTHREADS)
|
---|
101 | /*
|
---|
102 | * We have assembly language implementation of atomic
|
---|
103 | * stacks for the 32-bit sparc and x86 architectures only.
|
---|
104 | *
|
---|
105 | * Note: We ran into thread starvation problem with the
|
---|
106 | * 32-bit sparc assembly language implementation of atomic
|
---|
107 | * stacks, so we do not use it now. (Bugzilla bug 113740)
|
---|
108 | */
|
---|
109 | #if !defined(sparc) && !defined(__x86_64)
|
---|
110 | #define _PR_HAVE_ATOMIC_CAS
|
---|
111 | #endif
|
---|
112 | #endif
|
---|
113 |
|
---|
114 | #define _PR_POLL_AVAILABLE
|
---|
115 | #define _PR_USE_POLL
|
---|
116 | #define _PR_STAT_HAS_ST_ATIM
|
---|
117 | #ifdef SOLARIS2_5
|
---|
118 | #define _PR_HAVE_SYSV_SEMAPHORES
|
---|
119 | #define PR_HAVE_SYSV_NAMED_SHARED_MEMORY
|
---|
120 | #else
|
---|
121 | #define _PR_HAVE_POSIX_SEMAPHORES
|
---|
122 | #define PR_HAVE_POSIX_NAMED_SHARED_MEMORY
|
---|
123 | #endif
|
---|
124 | #define _PR_HAVE_GETIPNODEBYNAME
|
---|
125 | #define _PR_HAVE_GETIPNODEBYADDR
|
---|
126 | #define _PR_HAVE_GETADDRINFO
|
---|
127 | #define _PR_INET6_PROBE
|
---|
128 | #define _PR_ACCEPT_INHERIT_NONBLOCK
|
---|
129 | #if !defined(_XPG4_2) || defined(_XPG6) || defined(__EXTENSIONS__) /* vbox */
|
---|
130 | #define _PR_INET6 /* vbox */
|
---|
131 | #endif /* vbox */
|
---|
132 | #ifdef _PR_INET6
|
---|
133 | #define _PR_HAVE_INET_NTOP
|
---|
134 | #else
|
---|
135 | #define AF_INET6 26
|
---|
136 | struct addrinfo {
|
---|
137 | int ai_flags;
|
---|
138 | int ai_family;
|
---|
139 | int ai_socktype;
|
---|
140 | int ai_protocol;
|
---|
141 | size_t ai_addrlen;
|
---|
142 | char *ai_canonname;
|
---|
143 | struct sockaddr *ai_addr;
|
---|
144 | struct addrinfo *ai_next;
|
---|
145 | };
|
---|
146 | #define AI_CANONNAME 0x0010
|
---|
147 | #define AI_V4MAPPED 0x0001
|
---|
148 | #define AI_ALL 0x0002
|
---|
149 | #define AI_ADDRCONFIG 0x0004
|
---|
150 | #define _PR_HAVE_MD_SOCKADDR_IN6
|
---|
151 | /* isomorphic to struct in6_addr on Solaris 8 */
|
---|
152 | struct _md_in6_addr {
|
---|
153 | union {
|
---|
154 | PRUint8 _S6_u8[16];
|
---|
155 | PRUint32 _S6_u32[4];
|
---|
156 | PRUint32 __S6_align;
|
---|
157 | } _S6_un;
|
---|
158 | };
|
---|
159 | /* isomorphic to struct sockaddr_in6 on Solaris 8 */
|
---|
160 | struct _md_sockaddr_in6 {
|
---|
161 | PRUint16 sin6_family;
|
---|
162 | PRUint16 sin6_port;
|
---|
163 | PRUint32 sin6_flowinfo;
|
---|
164 | struct _md_in6_addr sin6_addr;
|
---|
165 | PRUint32 sin6_scope_id;
|
---|
166 | PRUint32 __sin6_src_id;
|
---|
167 | };
|
---|
168 | #endif
|
---|
169 | #if defined(_PR_PTHREADS)
|
---|
170 | #define _PR_HAVE_GETHOST_R
|
---|
171 | #define _PR_HAVE_GETHOST_R_POINTER
|
---|
172 | #endif
|
---|
173 |
|
---|
174 | #include "prinrval.h"
|
---|
175 | NSPR_API(PRIntervalTime) _MD_Solaris_GetInterval(void);
|
---|
176 | #define _MD_GET_INTERVAL _MD_Solaris_GetInterval
|
---|
177 | NSPR_API(PRIntervalTime) _MD_Solaris_TicksPerSecond(void);
|
---|
178 | #define _MD_INTERVAL_PER_SEC _MD_Solaris_TicksPerSecond
|
---|
179 |
|
---|
180 | #include "_iprt_atomic.h"
|
---|
181 |
|
---|
182 | NSPR_API(void) _MD_EarlyInit(void);
|
---|
183 |
|
---|
184 | #define _MD_EARLY_INIT _MD_EarlyInit
|
---|
185 | #define _MD_FINAL_INIT _PR_UnixInit
|
---|
186 |
|
---|
187 | extern void _MD_solaris_map_sendfile_error(int err);
|
---|
188 |
|
---|
189 | #endif /* nspr_solaris_defs_h___ */
|
---|
190 |
|
---|