Changeset 38636 in vbox for trunk/src/libs
- Timestamp:
- Sep 5, 2011 1:49:45 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73843
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ipcdUnix.cpp
r33044 r38636 474 474 #ifdef VBOX 475 475 /* Set up the runtime without loading the support driver. */ 476 RTR3Init ();476 RTR3InitExe(argc, &argv, 0); 477 477 #endif 478 478 -
trunk/src/libs/xpcom18a4/ipc/ipcd/shared/src/ipcLog.cpp
r11822 r38636 52 52 #undef PAGE_SIZE 53 53 #endif 54 #include <iprt/initterm.h> // for RTR3Init 54 #include <iprt/initterm.h> // for RTR3InitDll 55 55 #else // !VBOX 56 56 PRBool ipcLogEnabled = PR_FALSE; … … 122 122 #ifdef VBOX 123 123 // initialize VBox Runtime 124 RTR3Init ();124 RTR3InitDll(0); 125 125 126 126 PL_strncpyz(ipcLogPrefix, prefix, sizeof(ipcLogPrefix)); -
trunk/src/libs/xpcom18a4/java/src/nsJavaInterfaces.cpp
r31598 r38636 147 147 { 148 148 #if defined(VBOX_PATH_APP_PRIVATE_ARCH) && defined(VBOX_PATH_SHARED_LIBS) 149 rv = RTR3Init ();150 #else 151 const char * home = nsnull;149 rv = RTR3InitDll(0); 150 #else 151 const char *pszHome = nsnull; 152 152 const char *jhome = nsnull; 153 153 jstring path = nsnull; … … 164 164 { 165 165 path = (jstring)env->CallObjectMethod(aVBoxBinDirectory, getPathMID); 166 home = jhome = env->GetStringUTFChars(path, nsnull);167 } 168 169 if ( home == nsnull)170 home = getenv("VBOX_PROGRAM_PATH");171 172 if ( home) {173 size_t len = strlen(home);174 char * exepath = (char *)alloca(len+ 32);175 memcpy( exepath, home, len);176 memcpy( exepath + len, "/javafake", sizeof("/javafake"));177 rv = RTR3Init WithProgramPath(exepath);166 pszHome = jhome = env->GetStringUTFChars(path, nsnull); 167 } 168 169 if (pszHome == nsnull) 170 pszHome = getenv("VBOX_PROGRAM_PATH"); 171 172 if (pszHome) { 173 size_t cchHome = strlen(pszHome); 174 char *pszExePath = (char *)alloca(cchHome + 32); 175 memcpy(pszExePath, pszHome, cchHome); 176 memcpy(pszExePath + cchHome, "/javafake", sizeof("/javafake")); 177 rv = RTR3InitEx(RTR3INIT_VER_CUR, RTR3INIT_FLAGS_DLL, 0, NULL, pszExePath); 178 178 } else { 179 rv = RTR3Init ();179 rv = RTR3InitDll(0); 180 180 } 181 181 -
trunk/src/libs/xpcom18a4/java/tools/genifaces/GenerateJavaInterfaces.cpp
r29179 r38636 874 874 #ifdef VBOX 875 875 #if defined(VBOX_PATH_APP_PRIVATE_ARCH) && defined(VBOX_PATH_SHARED_LIBS) 876 rv = RTR3Init();876 rv = RTR3InitExe(argc, &argv, 0); 877 877 #else 878 const char *home = getenv("VBOX_PROGRAM_PATH");879 if (home) {880 size_t len = strlen(home);881 char *exepath = (char *)alloca(len+ 32);882 memcpy(exepath, home, len);883 memcpy(exepath + len, "/pythonfake", sizeof("/pythonfake"));884 rv = RTR3InitWithProgramPath(exepath);885 886 rv = RTR3Init();887 878 const char *pszHome = getenv("VBOX_PROGRAM_PATH"); 879 if (pszHome) { 880 size_t cchHome = strlen(pszHome); 881 char *pszExePath = (char *)alloca(cchHome + 32); 882 memcpy(pszExePath, pszHome, cchHome); 883 memcpy(pszExePath + cchHome, "/pythonfake", sizeof("/pythonfake")); 884 rc = RTR3InitEx(RTR3INIT_VER_CUR, 0, argc, &argv, pszExePath); 885 } else { 886 rv = RTR3InitExe(argc, &argv, 0); 887 } 888 888 #endif 889 889 #endif -
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 -
trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
r31604 r38636 781 781 782 782 #if defined(VBOX_PATH_APP_PRIVATE_ARCH) && defined(VBOX_PATH_SHARED_LIBS) 783 rc = RTR3Init ();783 rc = RTR3InitDll(0); 784 784 #else 785 785 const char *home = getenv("VBOX_PROGRAM_PATH"); … … 789 789 memcpy(exepath, home, len); 790 790 memcpy(exepath + len, "/pythonfake", sizeof("/pythonfake")); 791 rc = RTR3Init WithProgramPath(exepath);791 rc = RTR3InitEx(RTR3INIT_VER_CUR, RTR3INIT_FLAGS_DLL, 0, NULL, exepath); 792 792 } else { 793 rc = RTR3Init ();793 rc = RTR3InitDll(0); 794 794 } 795 795 #endif
Note:
See TracChangeset
for help on using the changeset viewer.