- Timestamp:
- Nov 4, 2023 6:33:49 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159874
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r101776 r101778 569 569 nsprpub/pr/src/pthreads/ptio.c \ 570 570 nsprpub/pr/src/pthreads/ptsynch.c \ 571 nsprpub/pr/src/pthreads/ptthread.c \ 572 nsprpub/pr/src/pthreads/ptmisc.c 571 nsprpub/pr/src/pthreads/ptthread.c 573 572 endif 574 573 -
trunk/src/libs/xpcom18a4/VBoxXPCOM-mangled.def
r101764 r101778 404 404 VBoxNsprPR_SendFile 405 405 VBoxNsprPR_SendTo 406 VBoxNsprPR_SetConcurrency407 406 VBoxNsprPR_SetEnv 408 407 VBoxNsprPR_SetError -
trunk/src/libs/xpcom18a4/VBoxXPCOM.def
r101764 r101778 441 441 PR_SendFile 442 442 PR_SendTo 443 PR_SetConcurrency444 443 PR_SetEnv 445 444 PR_SetError -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/prinit.h
r11551 r101778 55 55 #define PR_Initialized VBoxNsprPR_Initialized 56 56 #define PR_VersionCheck VBoxNsprPR_VersionCheck 57 #define PR_SetConcurrency VBoxNsprPR_SetConcurrency58 57 #define PR_SetFDCacheSize VBoxNsprPR_SetFDCacheSize 59 58 #define PR_ProcessExit VBoxNsprPR_ProcessExit … … 201 200 202 201 /* 203 ** Create extra virtual processor threads. Generally used with MP systems.204 */205 NSPR_API(void) PR_SetConcurrency(PRUintn numCPUs);206 207 /*208 202 ** Control the method and size of the file descriptor (PRFileDesc*) 209 203 ** cache used by the runtime. Setting 'high' to zero is for performance, -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prinit.c
r101777 r101778 204 204 _PR_InitAtomic(); 205 205 _PR_InitSegs(); 206 _PR_InitStacks();207 206 _PR_InitTPD(); 208 207 _PR_InitEnv(); … … 214 213 215 214 _PR_InitThreads(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0); 216 217 #ifndef _PR_GLOBAL_THREADS_ONLY218 _PR_InitCPUs();219 #endif220 215 221 216 _PR_InitCMon();
Note:
See TracChangeset
for help on using the changeset viewer.