_freebsd.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:8k
源码类别:

PlugIns编程

开发平台:

Visual C++

  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. #ifndef nspr_freebsd_defs_h___
  38. #define nspr_freebsd_defs_h___
  39. #include "prthread.h"
  40. #if __FreeBSD__ >= 2
  41. #include <osreldate.h>  /* for __FreeBSD_version */
  42. #endif
  43. #include <sys/syscall.h>
  44. #define PR_LINKER_ARCH "freebsd"
  45. #define _PR_SI_SYSNAME  "FREEBSD"
  46. #if defined(__i386__)
  47. #define _PR_SI_ARCHITECTURE "x86"
  48. #elif defined(__alpha__)
  49. #define _PR_SI_ARCHITECTURE "alpha"
  50. #elif defined(__sparc__)
  51. #define _PR_SI_ARCHITECTURE "sparc"
  52. #elif defined(__ia64__)
  53. #define _PR_SI_ARCHITECTURE "ia64"
  54. #elif defined(__amd64__)
  55. #define _PR_SI_ARCHITECTURE "amd64"
  56. #else
  57. #error "Unknown CPU architecture"
  58. #endif
  59. #if defined(__ELF__)
  60. #define PR_DLL_SUFFIX          ".so"
  61. #else
  62. #define PR_DLL_SUFFIX          ".so.1.0"
  63. #endif
  64. #define _PR_VMBASE              0x30000000
  65. #define _PR_STACK_VMBASE 0x50000000
  66. #define _MD_DEFAULT_STACK_SIZE 65536L
  67. #define _MD_MMAP_FLAGS          MAP_PRIVATE
  68. #undef  HAVE_STACK_GROWING_UP
  69. #define HAVE_DLL
  70. #define USE_DLFCN
  71. #define _PR_HAVE_SOCKADDR_LEN
  72. #define _PR_STAT_HAS_ST_ATIMESPEC
  73. #define _PR_NO_LARGE_FILES
  74. #if defined(_PR_PTHREADS)
  75. #if __FreeBSD_version >= 400008
  76. /*
  77.  * libc_r before this version of FreeBSD doesn't have poll().
  78.  * Although libc has poll(), it is not thread-safe so we can't
  79.  * use it in the pthreads version.
  80.  */
  81. #define _PR_POLL_AVAILABLE
  82. #endif
  83. #else
  84. #if __FreeBSD_version >= 300000
  85. #define _PR_POLL_AVAILABLE
  86. #define _PR_USE_POLL
  87. #endif
  88. #endif
  89. #define _PR_HAVE_SYSV_SEMAPHORES
  90. #define PR_HAVE_SYSV_NAMED_SHARED_MEMORY
  91. #if __FreeBSD_version >= 400014
  92. #define _PR_INET6
  93. #define _PR_HAVE_INET_NTOP
  94. #define _PR_HAVE_GETHOSTBYNAME2
  95. #define _PR_HAVE_GETADDRINFO
  96. #define _PR_INET6_PROBE
  97. #define _PR_IPV6_V6ONLY_PROBE
  98. #endif
  99. #define USE_SETJMP
  100. #ifndef _PR_PTHREADS
  101. #include <setjmp.h>
  102. #define PR_CONTEXT_TYPE sigjmp_buf
  103. #define CONTEXT(_th) ((_th)->md.context)
  104. #define _MD_GET_SP(_th)    (_th)->md.context[0]._sjb[2]
  105. #define PR_NUM_GCREGS _JBLEN
  106. /*
  107. ** Initialize a thread context to run "_main()" when started
  108. */
  109. #define _MD_INIT_CONTEXT(_thread, _sp, _main, status)  
  110. {  
  111.     *status = PR_TRUE;  
  112.     if (sigsetjmp(CONTEXT(_thread), 1)) {  
  113.         _main();  
  114.     }  
  115.     _MD_GET_SP(_thread) = (unsigned char*) ((_sp) - 64); 
  116. }
  117. #define _MD_SWITCH_CONTEXT(_thread)  
  118.     if (!sigsetjmp(CONTEXT(_thread), 1)) {  
  119. (_thread)->md.errcode = errno;  
  120. _PR_Schedule();  
  121.     }
  122. /*
  123. ** Restore a thread context, saved by _MD_SWITCH_CONTEXT
  124. */
  125. #define _MD_RESTORE_CONTEXT(_thread) 
  126. {   
  127.     errno = (_thread)->md.errcode;  
  128.     _MD_SET_CURRENT_THREAD(_thread);  
  129.     siglongjmp(CONTEXT(_thread), 1);  
  130. }
  131. /* Machine-dependent (MD) data structures */
  132. struct _MDThread {
  133.     PR_CONTEXT_TYPE context;
  134.     int id;
  135.     int errcode;
  136. };
  137. struct _MDThreadStack {
  138.     PRInt8 notused;
  139. };
  140. struct _MDLock {
  141.     PRInt8 notused;
  142. };
  143. struct _MDSemaphore {
  144.     PRInt8 notused;
  145. };
  146. struct _MDCVar {
  147.     PRInt8 notused;
  148. };
  149. struct _MDSegment {
  150.     PRInt8 notused;
  151. };
  152. /*
  153.  * md-specific cpu structure field
  154.  */
  155. #define _PR_MD_MAX_OSFD FD_SETSIZE
  156. struct _MDCPU_Unix {
  157.     PRCList ioQ;
  158.     PRUint32 ioq_timeout;
  159.     PRInt32 ioq_max_osfd;
  160.     PRInt32 ioq_osfd_cnt;
  161. #ifndef _PR_USE_POLL
  162.     fd_set fd_read_set, fd_write_set, fd_exception_set;
  163.     PRInt16 fd_read_cnt[_PR_MD_MAX_OSFD],fd_write_cnt[_PR_MD_MAX_OSFD],
  164. fd_exception_cnt[_PR_MD_MAX_OSFD];
  165. #else
  166. struct pollfd *ioq_pollfds;
  167. int ioq_pollfds_size;
  168. #endif /* _PR_USE_POLL */
  169. };
  170. #define _PR_IOQ(_cpu) ((_cpu)->md.md_unix.ioQ)
  171. #define _PR_ADD_TO_IOQ(_pq, _cpu) PR_APPEND_LINK(&_pq.links, &_PR_IOQ(_cpu))
  172. #define _PR_FD_READ_SET(_cpu) ((_cpu)->md.md_unix.fd_read_set)
  173. #define _PR_FD_READ_CNT(_cpu) ((_cpu)->md.md_unix.fd_read_cnt)
  174. #define _PR_FD_WRITE_SET(_cpu) ((_cpu)->md.md_unix.fd_write_set)
  175. #define _PR_FD_WRITE_CNT(_cpu) ((_cpu)->md.md_unix.fd_write_cnt)
  176. #define _PR_FD_EXCEPTION_SET(_cpu) ((_cpu)->md.md_unix.fd_exception_set)
  177. #define _PR_FD_EXCEPTION_CNT(_cpu) ((_cpu)->md.md_unix.fd_exception_cnt)
  178. #define _PR_IOQ_TIMEOUT(_cpu) ((_cpu)->md.md_unix.ioq_timeout)
  179. #define _PR_IOQ_MAX_OSFD(_cpu) ((_cpu)->md.md_unix.ioq_max_osfd)
  180. #define _PR_IOQ_OSFD_CNT(_cpu) ((_cpu)->md.md_unix.ioq_osfd_cnt)
  181. #define _PR_IOQ_POLLFDS(_cpu) ((_cpu)->md.md_unix.ioq_pollfds)
  182. #define _PR_IOQ_POLLFDS_SIZE(_cpu) ((_cpu)->md.md_unix.ioq_pollfds_size)
  183. #define _PR_IOQ_MIN_POLLFDS_SIZE(_cpu) 32
  184. struct _MDCPU {
  185. struct _MDCPU_Unix md_unix;
  186. };
  187. #define _MD_INIT_LOCKS()
  188. #define _MD_NEW_LOCK(lock) PR_SUCCESS
  189. #define _MD_FREE_LOCK(lock)
  190. #define _MD_LOCK(lock)
  191. #define _MD_UNLOCK(lock)
  192. #define _MD_INIT_IO()
  193. #define _MD_IOQ_LOCK()
  194. #define _MD_IOQ_UNLOCK()
  195. extern PRStatus _MD_InitializeThread(PRThread *thread);
  196. #define _MD_INIT_RUNNING_CPU(cpu)       _MD_unix_init_running_cpu(cpu)
  197. #define _MD_INIT_THREAD                 _MD_InitializeThread
  198. #define _MD_EXIT_THREAD(thread)
  199. #define _MD_SUSPEND_THREAD(thread)      _MD_suspend_thread
  200. #define _MD_RESUME_THREAD(thread)       _MD_resume_thread
  201. #define _MD_CLEAN_THREAD(_thread)
  202. extern PRStatus _MD_CREATE_THREAD(
  203.     PRThread *thread,
  204.     void (*start) (void *),
  205.     PRThreadPriority priority,
  206.     PRThreadScope scope,
  207.     PRThreadState state,
  208.     PRUint32 stackSize);
  209. extern void _MD_SET_PRIORITY(struct _MDThread *thread, PRUintn newPri);
  210. extern PRStatus _MD_WAIT(PRThread *, PRIntervalTime timeout);
  211. extern PRStatus _MD_WAKEUP_WAITER(PRThread *);
  212. extern void _MD_YIELD(void);
  213. #endif /* ! _PR_PTHREADS */
  214. extern void _MD_EarlyInit(void);
  215. extern PRIntervalTime _PR_UNIX_GetInterval(void);
  216. extern PRIntervalTime _PR_UNIX_TicksPerSecond(void);
  217. #define _MD_EARLY_INIT                  _MD_EarlyInit
  218. #define _MD_FINAL_INIT _PR_UnixInit
  219. #define _MD_GET_INTERVAL                  _PR_UNIX_GetInterval
  220. #define _MD_INTERVAL_PER_SEC              _PR_UNIX_TicksPerSecond
  221. /*
  222.  * We wrapped the select() call.  _MD_SELECT refers to the built-in,
  223.  * unwrapped version.
  224.  */
  225. #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
  226. #if defined(_PR_POLL_AVAILABLE)
  227. #include <poll.h>
  228. #define _MD_POLL(fds,nfds,timeout) syscall(SYS_poll,fds,nfds,timeout)
  229. #endif
  230. /* freebsd has INADDR_LOOPBACK defined, but in /usr/include/rpc/types.h, and I didn't
  231.    want to be including that.. */
  232. #ifndef INADDR_LOOPBACK
  233. #define INADDR_LOOPBACK         (u_long)0x7F000001
  234. #endif
  235. /* For writev() */
  236. #include <sys/uio.h>
  237. #endif /* nspr_freebsd_defs_h___ */