Changeset 38636 in vbox for trunk/src/libs/xpcom18a4/nsprpub/pr
- Timestamp:
- Sep 5, 2011 1:49:45 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73843
- Location:
- trunk/src/libs/xpcom18a4/nsprpub/pr/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prlog.c
r31259 r38636 51 51 52 52 #if defined(VBOX) && defined(DEBUG) 53 # include <iprt/initterm.h> /* for RTR3Init */53 # include <iprt/initterm.h> /* for RTR3InitDll */ 54 54 # include <iprt/log.h> 55 55 #endif … … 424 424 if (strcmp(file, "IPRT") == 0) { 425 425 /* initialize VBox Runtime */ 426 RTR3Init ();426 RTR3InitDll(0); 427 427 newLogFile = IPRT_DEBUG_FILE; 428 428 } … … 465 465 if (strcmp(file, "IPRT") == 0) { 466 466 /* initialize VBox Runtime */ 467 RTR3Init ();467 RTR3InitDll(0); 468 468 logFile = IPRT_DEBUG_FILE; 469 469 return PR_TRUE; -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prinit.c
r32971 r38636 177 177 _pr_initialized = PR_TRUE; 178 178 #ifdef VBOX_USE_IPRT_IN_NSPR 179 RTR3Init ();179 RTR3InitDll(0); 180 180 #endif 181 181 #ifdef _PR_ZONE_ALLOCATOR
Note:
See TracChangeset
for help on using the changeset viewer.