Changeset 102216 in vbox for trunk/src/libs/xpcom18a4/nsprpub
- Timestamp:
- Nov 21, 2023 3:10:54 PM (14 months ago)
- Location:
- trunk/src/libs/xpcom18a4/nsprpub/pr/include
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/include/private/primpl.h
r102215 r102216 50 50 51 51 #include "nspr.h" 52 #include "prpriv.h"53 52 54 53 #include "md/prosdep.h" -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/prmon.h
r11551 r102216 50 50 #define PR_NewMonitor VBoxNsprPR_NewMonitor 51 51 #define PR_DestroyMonitor VBoxNsprPR_DestroyMonitor 52 #define PR_GetMonitorEntryCount VBoxNsprPR_GetMonitorEntryCount 53 #define PR_NewNamedMonitor VBoxNsprPR_NewNamedMonitor 52 54 #endif /* VBOX_WITH_XPCOM_NAMESPACE_CLEANUP */ 53 55 … … 119 121 NSPR_API(PRStatus) PR_NotifyAll(PRMonitor *mon); 120 122 123 /* 124 ** Return the number of times that the current thread has entered the 125 ** mutex. Returns zero if the current thread has not entered the mutex. 126 */ 127 NSPR_API(PRIntn) PR_GetMonitorEntryCount(PRMonitor *mon); 128 129 NSPR_API(PRMonitor*) PR_NewNamedMonitor(const char* name); 130 121 131 PR_END_EXTERN_C 122 132
Note:
See TracChangeset
for help on using the changeset viewer.