prcmon.h 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 prcmon_h___
  38. #define prcmon_h___
  39. /*
  40. ** Interface to cached monitors. Cached monitors use an address to find a
  41. ** given PR monitor. In this way a monitor can be associated with another
  42. ** object without preallocating a monitor for all objects.
  43. **
  44. ** A hash table is used to quickly map addresses to individual monitors
  45. ** and the system automatically grows the hash table as needed.
  46. **
  47. ** Cache monitors are about 5 times slower to use than uncached monitors.
  48. */
  49. #include "prmon.h"
  50. #include "prinrval.h"
  51. PR_BEGIN_EXTERN_C
  52. /**
  53. ** Like PR_EnterMonitor except use the "address" to find a monitor in the
  54. ** monitor cache. If successful, returns the PRMonitor now associated
  55. ** with "address". Note that you must PR_CExitMonitor the address to
  56. ** release the monitor cache entry (otherwise the monitor cache will fill
  57. ** up). This call will return NULL if the monitor cache needs to be
  58. ** expanded and the system is out of memory.
  59. */
  60. NSPR_API(PRMonitor*) PR_CEnterMonitor(void *address);
  61. /*
  62. ** Like PR_ExitMonitor except use the "address" to find a monitor in the
  63. ** monitor cache.
  64. */
  65. NSPR_API(PRStatus) PR_CExitMonitor(void *address);
  66. /*
  67. ** Like PR_Wait except use the "address" to find a monitor in the
  68. ** monitor cache.
  69. */
  70. NSPR_API(PRStatus) PR_CWait(void *address, PRIntervalTime timeout);
  71. /*
  72. ** Like PR_Notify except use the "address" to find a monitor in the
  73. ** monitor cache.
  74. */
  75. NSPR_API(PRStatus) PR_CNotify(void *address);
  76. /*
  77. ** Like PR_NotifyAll except use the "address" to find a monitor in the
  78. ** monitor cache.
  79. */
  80. NSPR_API(PRStatus) PR_CNotifyAll(void *address);
  81. /*
  82. ** Set a callback to be invoked each time a monitor is recycled from the cache
  83. ** freelist, with the monitor's cache-key passed in address.
  84. */
  85. NSPR_API(void) PR_CSetOnMonitorRecycle(void (PR_CALLBACK *callback)(void *address));
  86. PR_END_EXTERN_C
  87. #endif /* prcmon_h___ */