PageRenderTime 28ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/gecko_api/include/nssrwlk.h

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