nssrwlk.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:6k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. /*
  34. ** File: nsrwlock.h
  35. ** Description: API to basic reader-writer lock functions of NSS.
  36. ** These are re-entrant reader writer locks; that is,
  37. ** If I hold the write lock, I can ask for it and get it again.
  38. ** If I hold the write lock, I can also ask for and get a read lock.
  39. **      I can then release the locks in any order (read or write).
  40. ** I must release each lock type as many times as I acquired it.
  41. ** Otherwise, these are normal reader/writer locks.
  42. **
  43. ** For deadlock detection, locks should be ranked, and no lock may be aquired
  44. ** while I hold a lock of higher rank number.
  45. ** If you don't want that feature, always use NSS_RWLOCK_RANK_NONE.
  46. ** Lock name is for debugging, and is optional (may be NULL)
  47. **/
  48. #ifndef nssrwlk_h___
  49. #define nssrwlk_h___
  50. #include "prtypes.h"
  51. #include "nssrwlkt.h"
  52. #define NSS_RWLOCK_RANK_NONE 0
  53. /* SEC_BEGIN_PROTOS */
  54. PR_BEGIN_EXTERN_C
  55. /***********************************************************************
  56. ** FUNCTION:    NSSRWLock_New
  57. ** DESCRIPTION:
  58. **  Returns a pointer to a newly created reader-writer lock object.
  59. ** INPUTS:      Lock rank
  60. ** Lock name
  61. ** OUTPUTS:     void
  62. ** RETURN:      NSSRWLock*
  63. **   If the lock cannot be created because of resource constraints, NULL
  64. **   is returned.
  65. **  
  66. ***********************************************************************/
  67. PR_EXTERN(NSSRWLock*) NSSRWLock_New(PRUint32 lock_rank, const char *lock_name);
  68. /***********************************************************************
  69. ** FUNCTION:    NSSRWLock_AtomicCreate
  70. ** DESCRIPTION:
  71. **  Given the address of a NULL pointer to a NSSRWLock, 
  72. **  atomically initializes that pointer to a newly created NSSRWLock.
  73. **  Returns the value placed into that pointer, or NULL.
  74. **
  75. ** INPUTS:      address of NSRWLock pointer
  76. **              Lock rank
  77. ** Lock name
  78. ** OUTPUTS:     NSSRWLock*
  79. ** RETURN:      NSSRWLock*
  80. **   If the lock cannot be created because of resource constraints, 
  81. **   the pointer will be left NULL.
  82. **  
  83. ***********************************************************************/
  84. PR_EXTERN(NSSRWLock *)
  85. nssRWLock_AtomicCreate( NSSRWLock  ** prwlock, 
  86. PRUint32      lock_rank, 
  87. const char *  lock_name);
  88. /***********************************************************************
  89. ** FUNCTION:    NSSRWLock_Destroy
  90. ** DESCRIPTION:
  91. **  Destroys a given RW lock object.
  92. ** INPUTS:      NSSRWLock *lock - Lock to be freed.
  93. ** OUTPUTS:     void
  94. ** RETURN:      None
  95. ***********************************************************************/
  96. PR_EXTERN(void) NSSRWLock_Destroy(NSSRWLock *lock);
  97. /***********************************************************************
  98. ** FUNCTION:    NSSRWLock_LockRead
  99. ** DESCRIPTION:
  100. **  Apply a read lock (non-exclusive) on a RWLock
  101. ** INPUTS:      NSSRWLock *lock - Lock to be read-locked.
  102. ** OUTPUTS:     void
  103. ** RETURN:      None
  104. ***********************************************************************/
  105. PR_EXTERN(void) NSSRWLock_LockRead(NSSRWLock *lock);
  106. /***********************************************************************
  107. ** FUNCTION:    NSSRWLock_LockWrite
  108. ** DESCRIPTION:
  109. **  Apply a write lock (exclusive) on a RWLock
  110. ** INPUTS:      NSSRWLock *lock - Lock to write-locked.
  111. ** OUTPUTS:     void
  112. ** RETURN:      None
  113. ***********************************************************************/
  114. PR_EXTERN(void) NSSRWLock_LockWrite(NSSRWLock *lock);
  115. /***********************************************************************
  116. ** FUNCTION:    NSSRWLock_UnlockRead
  117. ** DESCRIPTION:
  118. **  Release a Read lock. Unlocking an unlocked lock has undefined results.
  119. ** INPUTS:      NSSRWLock *lock - Lock to unlocked.
  120. ** OUTPUTS:     void
  121. ** RETURN:      void
  122. ***********************************************************************/
  123. PR_EXTERN(void) NSSRWLock_UnlockRead(NSSRWLock *lock);
  124. /***********************************************************************
  125. ** FUNCTION:    NSSRWLock_UnlockWrite
  126. ** DESCRIPTION:
  127. **  Release a Write lock. Unlocking an unlocked lock has undefined results.
  128. ** INPUTS:      NSSRWLock *lock - Lock to unlocked.
  129. ** OUTPUTS:     void
  130. ** RETURN:      void
  131. ***********************************************************************/
  132. PR_EXTERN(void) NSSRWLock_UnlockWrite(NSSRWLock *lock);
  133. /***********************************************************************
  134. ** FUNCTION:    NSSRWLock_HaveWriteLock
  135. ** DESCRIPTION:
  136. **  Tells caller whether the current thread holds the write lock, or not.
  137. ** INPUTS:      NSSRWLock *lock - Lock to test.
  138. ** OUTPUTS:     void
  139. ** RETURN:      PRBool PR_TRUE IFF the current thread holds the write lock.
  140. ***********************************************************************/
  141. PR_EXTERN(PRBool) NSSRWLock_HaveWriteLock(NSSRWLock *rwlock);
  142. /* SEC_END_PROTOS */
  143. PR_END_EXTERN_C
  144. #endif /* nsrwlock_h___ */