Changeset 102216 in vbox
- Timestamp:
- Nov 21, 2023 3:10:54 PM (12 months ago)
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r102215 r102216 62 62 NSPRPUB-HEADERS \ 63 63 NSPRPUB-MD-HEADERS \ 64 NSPRPUB-PRIV-HEADERS \65 64 STRING-HEADERS \ 66 65 XPCOM-HEADERS \ … … 198 197 nsprpub/pr/include/md/_solaris32.cfg \ 199 198 nsprpub/pr/include/md/_solaris64.cfg 200 201 NSPRPUB-PRIV-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/private/202 NSPRPUB-PRIV-HEADERS_IFFLAGS = -m 644203 NSPRPUB-PRIV-HEADERS_SOURCES = \204 nsprpub/pr/include/private/pprthred.h \205 nsprpub/pr/include/private/prpriv.h206 199 207 200 STRING-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/string/ -
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.