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

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_pthread_defs_h___
  38. #define nspr_pthread_defs_h___
  39. #include <pthread.h>
  40. #include "prthread.h"
  41. #if defined(PTHREADS_USER)
  42. /*
  43. ** Thread Local Storage 
  44. */
  45. extern pthread_key_t current_thread_key;
  46. extern pthread_key_t current_cpu_key;
  47. extern pthread_key_t last_thread_key;
  48. extern pthread_key_t intsoff_key;
  49. #define _MD_CURRENT_THREAD() 
  50. ((struct PRThread *) pthread_getspecific(current_thread_key))
  51. #define _MD_CURRENT_CPU() 
  52. ((struct _PRCPU *) pthread_getspecific(current_cpu_key))
  53. #define _MD_LAST_THREAD()
  54. ((struct PRThread *) pthread_getspecific(last_thread_key))
  55. #define _MD_SET_CURRENT_THREAD(newval) 
  56. pthread_setspecific(current_thread_key, (void *)newval)
  57. #define _MD_SET_CURRENT_CPU(newval) 
  58. pthread_setspecific(current_cpu_key, (void *)newval)
  59. #define _MD_SET_LAST_THREAD(newval)  
  60. pthread_setspecific(last_thread_key, (void *)newval)
  61. #define _MD_SET_INTSOFF(_val)
  62. #define _MD_GET_INTSOFF() 1
  63. /*
  64. ** Initialize the thread context preparing it to execute _main.
  65. */
  66. #define _MD_INIT_CONTEXT(_thread, _sp, _main, status)
  67.     PR_BEGIN_MACRO       
  68.         *status = PR_TRUE;              
  69. if (SAVE_CONTEXT(_thread)) {
  70.      (*_main)();
  71. }
  72. _MD_SET_THR_SP(_thread, _sp);
  73. _thread->no_sched = 0; 
  74.     PR_END_MACRO
  75. #define _MD_SWITCH_CONTEXT(_thread)  
  76.     PR_BEGIN_MACRO 
  77. PR_ASSERT(_thread->no_sched);
  78. if (!SAVE_CONTEXT(_thread)) {
  79. (_thread)->md.errcode = errno;  
  80. _MD_SET_LAST_THREAD(_thread);
  81. _PR_Schedule();      
  82.     } else {
  83.  (_MD_LAST_THREAD())->no_sched = 0;
  84. }
  85.     PR_END_MACRO
  86. /*
  87. ** Restore a thread context, saved by _MD_SWITCH_CONTEXT
  88. */
  89. #define _MD_RESTORE_CONTEXT(_thread)
  90.     PR_BEGIN_MACRO 
  91.     errno = (_thread)->md.errcode; 
  92.     _MD_SET_CURRENT_THREAD(_thread); 
  93. _thread->no_sched = 1;
  94.     GOTO_CONTEXT(_thread); 
  95.     PR_END_MACRO
  96. /* Machine-dependent (MD) data structures */
  97. struct _MDThread {
  98.     jmp_buf  jb;
  99.     int id;
  100.     int errcode;
  101. pthread_t pthread;
  102. pthread_mutex_t pthread_mutex;
  103. pthread_cond_t pthread_cond;
  104. int wait;
  105. };
  106. struct _MDThreadStack {
  107.     PRInt8 notused;
  108. };
  109. struct _MDLock {
  110. pthread_mutex_t mutex;
  111. };
  112. struct _MDSemaphore {
  113.     PRInt8 notused;
  114. };
  115. struct _MDCVar {
  116. pthread_mutex_t mutex;
  117. };
  118. struct _MDSegment {
  119.     PRInt8 notused;
  120. };
  121. /*
  122.  * md-specific cpu structure field
  123.  */
  124. #define _PR_MD_MAX_OSFD FD_SETSIZE
  125. struct _MDCPU_Unix {
  126.     PRCList ioQ;
  127.     PRUint32 ioq_timeout;
  128.     PRInt32 ioq_max_osfd;
  129.     PRInt32 ioq_osfd_cnt;
  130. #ifndef _PR_USE_POLL
  131.     fd_set fd_read_set, fd_write_set, fd_exception_set;
  132.     PRInt16 fd_read_cnt[_PR_MD_MAX_OSFD],fd_write_cnt[_PR_MD_MAX_OSFD],
  133. fd_exception_cnt[_PR_MD_MAX_OSFD];
  134. #else
  135. struct pollfd *ioq_pollfds;
  136. int ioq_pollfds_size;
  137. #endif /* _PR_USE_POLL */
  138. };
  139. #define _PR_IOQ(_cpu) ((_cpu)->md.md_unix.ioQ)
  140. #define _PR_ADD_TO_IOQ(_pq, _cpu) PR_APPEND_LINK(&_pq.links, &_PR_IOQ(_cpu))
  141. #define _PR_FD_READ_SET(_cpu) ((_cpu)->md.md_unix.fd_read_set)
  142. #define _PR_FD_READ_CNT(_cpu) ((_cpu)->md.md_unix.fd_read_cnt)
  143. #define _PR_FD_WRITE_SET(_cpu) ((_cpu)->md.md_unix.fd_write_set)
  144. #define _PR_FD_WRITE_CNT(_cpu) ((_cpu)->md.md_unix.fd_write_cnt)
  145. #define _PR_FD_EXCEPTION_SET(_cpu) ((_cpu)->md.md_unix.fd_exception_set)
  146. #define _PR_FD_EXCEPTION_CNT(_cpu) ((_cpu)->md.md_unix.fd_exception_cnt)
  147. #define _PR_IOQ_TIMEOUT(_cpu) ((_cpu)->md.md_unix.ioq_timeout)
  148. #define _PR_IOQ_MAX_OSFD(_cpu) ((_cpu)->md.md_unix.ioq_max_osfd)
  149. #define _PR_IOQ_OSFD_CNT(_cpu) ((_cpu)->md.md_unix.ioq_osfd_cnt)
  150. #define _PR_IOQ_POLLFDS(_cpu) ((_cpu)->md.md_unix.ioq_pollfds)
  151. #define _PR_IOQ_POLLFDS_SIZE(_cpu) ((_cpu)->md.md_unix.ioq_pollfds_size)
  152. #define _PR_IOQ_MIN_POLLFDS_SIZE(_cpu) 32
  153. struct _MDCPU {
  154.     jmp_buf  jb;
  155. pthread_t  pthread;
  156. struct _MDCPU_Unix  md_unix;
  157. };
  158. /*
  159. #define _MD_NEW_LOCK(lock) PR_SUCCESS
  160. #define _MD_FREE_LOCK(lock)
  161. #define _MD_LOCK(lock)
  162. #define _MD_UNLOCK(lock)
  163. */
  164. extern pthread_mutex_t _pr_heapLock;
  165. #define _PR_LOCK(lock) pthread_mutex_lock(lock)
  166. #define _PR_UNLOCK(lock) pthread_mutex_unlock(lock)
  167. #define _PR_LOCK_HEAP() {
  168. if (_pr_primordialCPU) {
  169. _PR_LOCK(_pr_heapLock);
  170. }
  171. #define _PR_UNLOCK_HEAP()  if (_pr_primordialCPU) {
  172. _PR_UNLOCK(_pr_heapLock);
  173. }
  174.   }
  175. NSPR_API(PRStatus) _MD_NEW_LOCK(struct _MDLock *md);
  176. NSPR_API(void) _MD_FREE_LOCK(struct _MDLock *lockp);
  177. #define _MD_LOCK(_lockp) _PR_LOCK(&(_lockp)->mutex)
  178. #define _MD_UNLOCK(_lockp) _PR_UNLOCK(&(_lockp)->mutex)
  179. #define _MD_INIT_IO()
  180. #define _MD_IOQ_LOCK()
  181. #define _MD_IOQ_UNLOCK()
  182. #define _MD_CHECK_FOR_EXIT()
  183. NSPR_API(PRStatus) _MD_InitThread(struct PRThread *thread);
  184. #define _MD_INIT_THREAD _MD_InitThread
  185. #define _MD_INIT_ATTACHED_THREAD _MD_InitThread
  186. NSPR_API(void) _MD_ExitThread(struct PRThread *thread);
  187. #define _MD_EXIT_THREAD _MD_ExitThread
  188. NSPR_API(void) _MD_SuspendThread(struct PRThread *thread);
  189. #define _MD_SUSPEND_THREAD _MD_SuspendThread
  190. NSPR_API(void) _MD_ResumeThread(struct PRThread *thread);
  191. #define _MD_RESUME_THREAD _MD_ResumeThread
  192. NSPR_API(void) _MD_SuspendCPU(struct _PRCPU *thread);
  193. #define _MD_SUSPEND_CPU _MD_SuspendCPU
  194. NSPR_API(void) _MD_ResumeCPU(struct _PRCPU *thread);
  195. #define _MD_RESUME_CPU _MD_ResumeCPU
  196. #define _MD_BEGIN_SUSPEND_ALL()
  197. #define _MD_END_SUSPEND_ALL()
  198. #define _MD_BEGIN_RESUME_ALL()
  199. #define _MD_END_RESUME_ALL()
  200. NSPR_API(void) _MD_EarlyInit(void);
  201. #define _MD_EARLY_INIT _MD_EarlyInit
  202. #define _MD_FINAL_INIT _PR_UnixInit
  203. NSPR_API(void) _MD_InitLocks(void);
  204. #define _MD_INIT_LOCKS _MD_InitLocks
  205. NSPR_API(void) _MD_CleanThread(struct PRThread *thread);
  206. #define _MD_CLEAN_THREAD _MD_CleanThread
  207. NSPR_API(PRStatus) _MD_CreateThread(
  208.                         struct PRThread *thread,
  209.                         void (*start) (void *),
  210.                         PRThreadPriority priority,
  211.                         PRThreadScope scope,
  212.                         PRThreadState state,
  213.                         PRUint32 stackSize);
  214. #define _MD_CREATE_THREAD _MD_CreateThread
  215. extern void _MD_CleanupBeforeExit(void);
  216. #define _MD_CLEANUP_BEFORE_EXIT _MD_CleanupBeforeExit
  217. NSPR_API(void) _MD_InitRunningCPU(struct _PRCPU *cpu);
  218. #define    _MD_INIT_RUNNING_CPU _MD_InitRunningCPU
  219. /* The _PR_MD_WAIT_LOCK and _PR_MD_WAKEUP_WAITER functions put to sleep and
  220.  * awaken a thread which is waiting on a lock or cvar.
  221.  */
  222. NSPR_API(PRStatus) _MD_wait(struct PRThread *, PRIntervalTime timeout);
  223. #define _MD_WAIT _MD_wait
  224. NSPR_API(PRStatus) _MD_WakeupWaiter(struct PRThread *);
  225. #define _MD_WAKEUP_WAITER _MD_WakeupWaiter
  226. NSPR_API(void) _MD_SetPriority(struct _MDThread *thread,
  227. PRThreadPriority newPri);
  228. #define _MD_SET_PRIORITY _MD_SetPriority
  229. #endif /* PTHREADS_USER */
  230. #endif /* nspr_pthread_defs_h___ */