VirtualBox

Changeset 38636 in vbox for trunk/src/libs


Ignore:
Timestamp:
Sep 5, 2011 1:49:45 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
73843
Message:

*,IPRT: Redid the ring-3 init to always convert the arguments to UTF-8.

Location:
trunk/src/libs/xpcom18a4
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ipcdUnix.cpp

    r33044 r38636  
    474474#ifdef VBOX
    475475    /* Set up the runtime without loading the support driver. */
    476     RTR3Init();
     476    RTR3InitExe(argc, &argv, 0);
    477477#endif
    478478
  • trunk/src/libs/xpcom18a4/ipc/ipcd/shared/src/ipcLog.cpp

    r11822 r38636  
    5252#undef PAGE_SIZE
    5353#endif
    54 #include <iprt/initterm.h> // for RTR3Init
     54#include <iprt/initterm.h> // for RTR3InitDll
    5555#else // !VBOX
    5656PRBool ipcLogEnabled = PR_FALSE;
     
    122122#ifdef VBOX
    123123    // initialize VBox Runtime
    124     RTR3Init();
     124    RTR3InitDll(0);
    125125
    126126    PL_strncpyz(ipcLogPrefix, prefix, sizeof(ipcLogPrefix));
  • trunk/src/libs/xpcom18a4/java/src/nsJavaInterfaces.cpp

    r31598 r38636  
    147147{
    148148#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;
    152152    const char *jhome = nsnull;
    153153    jstring path = nsnull;
     
    164164    {
    165165        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 = RTR3InitWithProgramPath(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);
    178178    } else {
    179       rv = RTR3Init();
     179      rv = RTR3InitDll(0);
    180180    }
    181181
  • trunk/src/libs/xpcom18a4/java/tools/genifaces/GenerateJavaInterfaces.cpp

    r29179 r38636  
    874874#ifdef VBOX
    875875#if defined(VBOX_PATH_APP_PRIVATE_ARCH) && defined(VBOX_PATH_SHARED_LIBS)
    876     rv = RTR3Init();
     876  rv = RTR3InitExe(argc, &argv, 0);
    877877#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     } else {
    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  }
    888888#endif
    889889#endif
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prlog.c

    r31259 r38636  
    5151
    5252#if defined(VBOX) && defined(DEBUG)
    53 # include <iprt/initterm.h> /* for RTR3Init */
     53# include <iprt/initterm.h> /* for RTR3InitDll */
    5454# include <iprt/log.h>
    5555#endif
     
    424424    if (strcmp(file, "IPRT") == 0) {
    425425        /* initialize VBox Runtime */
    426         RTR3Init();
     426        RTR3InitDll(0);
    427427        newLogFile = IPRT_DEBUG_FILE;
    428428    }
     
    465465    if (strcmp(file, "IPRT") == 0) {
    466466        /* initialize VBox Runtime */
    467         RTR3Init();
     467        RTR3InitDll(0);
    468468        logFile = IPRT_DEBUG_FILE;
    469469        return PR_TRUE;
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prinit.c

    r32971 r38636  
    177177    _pr_initialized = PR_TRUE;
    178178#ifdef VBOX_USE_IPRT_IN_NSPR
    179     RTR3Init();
     179    RTR3InitDll(0);
    180180#endif
    181181#ifdef _PR_ZONE_ALLOCATOR
  • trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp

    r31604 r38636  
    781781
    782782#if defined(VBOX_PATH_APP_PRIVATE_ARCH) && defined(VBOX_PATH_SHARED_LIBS)
    783     rc = RTR3Init();
     783    rc = RTR3InitDll(0);
    784784#else
    785785    const char *home = getenv("VBOX_PROGRAM_PATH");
     
    789789      memcpy(exepath, home, len);
    790790      memcpy(exepath + len, "/pythonfake", sizeof("/pythonfake"));
    791       rc = RTR3InitWithProgramPath(exepath);
     791      rc = RTR3InitEx(RTR3INIT_VER_CUR, RTR3INIT_FLAGS_DLL, 0, NULL, exepath);
    792792    } else {
    793       rc = RTR3Init();
     793      rc = RTR3InitDll(0);
    794794    }
    795795#endif
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette