VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/nsprpub/pr/include/prcmon.h@ 50011

Last change on this file since 50011 was 11551, checked in by vboxsync, 16 years ago

API/xpcom: prefix any C symbols in VBoxXPCOM.so, to avoid namespace pollution. Enabled only on Linux at the moment.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
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
38#ifndef prcmon_h___
39#define prcmon_h___
40
41/*
42** Interface to cached monitors. Cached monitors use an address to find a
43** given PR monitor. In this way a monitor can be associated with another
44** object without preallocating a monitor for all objects.
45**
46** A hash table is used to quickly map addresses to individual monitors
47** and the system automatically grows the hash table as needed.
48**
49** Cache monitors are about 5 times slower to use than uncached monitors.
50*/
51#include "prmon.h"
52#include "prinrval.h"
53
54#ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
55#define PR_CEnterMonitor VBoxNsprPR_CEnterMonitor
56#define PR_CExitMonitor VBoxNsprPR_CExitMonitor
57#define PR_CNotify VBoxNsprPR_CNotify
58#define PR_CWait VBoxNsprPR_CWait
59#define PR_CNotifyAll VBoxNsprPR_CNotifyAll
60#define PR_CSetOnMonitorRecycle VBoxNsprPR_CSetOnMonitorRecycle
61#endif /* VBOX_WITH_XPCOM_NAMESPACE_CLEANUP */
62
63PR_BEGIN_EXTERN_C
64
65/**
66** Like PR_EnterMonitor except use the "address" to find a monitor in the
67** monitor cache. If successful, returns the PRMonitor now associated
68** with "address". Note that you must PR_CExitMonitor the address to
69** release the monitor cache entry (otherwise the monitor cache will fill
70** up). This call will return NULL if the monitor cache needs to be
71** expanded and the system is out of memory.
72*/
73NSPR_API(PRMonitor*) PR_CEnterMonitor(void *address);
74
75/*
76** Like PR_ExitMonitor except use the "address" to find a monitor in the
77** monitor cache.
78*/
79NSPR_API(PRStatus) PR_CExitMonitor(void *address);
80
81/*
82** Like PR_Wait except use the "address" to find a monitor in the
83** monitor cache.
84*/
85NSPR_API(PRStatus) PR_CWait(void *address, PRIntervalTime timeout);
86
87/*
88** Like PR_Notify except use the "address" to find a monitor in the
89** monitor cache.
90*/
91NSPR_API(PRStatus) PR_CNotify(void *address);
92
93/*
94** Like PR_NotifyAll except use the "address" to find a monitor in the
95** monitor cache.
96*/
97NSPR_API(PRStatus) PR_CNotifyAll(void *address);
98
99/*
100** Set a callback to be invoked each time a monitor is recycled from the cache
101** freelist, with the monitor's cache-key passed in address.
102*/
103NSPR_API(void) PR_CSetOnMonitorRecycle(void (PR_CALLBACK *callback)(void *address));
104
105PR_END_EXTERN_C
106
107#endif /* prcmon_h___ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette