VirtualBox

Ignore:
Timestamp:
Feb 14, 2010 9:47:37 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
57683
Message:

HostDrivers: tabs -> spaces.

Location:
trunk/src/VBox/HostDrivers/Support
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/darwin/SUPLib-darwin.cpp

    r22077 r26512  
    267267{
    268268    if (RT_LIKELY(ioctl(pThis->hDevice, uFunction, pvReq) >= 0))
    269         return VINF_SUCCESS;
     269        return VINF_SUCCESS;
    270270    return RTErrConvertFromErrno(errno);
    271271}
  • trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp

    r22632 r26512  
    182182     */
    183183    if (RT_LIKELY(ioctl(pThis->hDevice, uFunction, pvReq) >= 0))
    184         return VINF_SUCCESS;
     184        return VINF_SUCCESS;
    185185
    186186    /* This is the reverse operation of the one found in SUPDrv-linux.c */
     
    217217    char *pvPages = (char *)mmap(NULL, cbMmap, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
    218218    if (pvPages == MAP_FAILED)
    219         return VERR_NO_MEMORY;
     219        return VERR_NO_MEMORY;
    220220
    221221    if (pThis->fSysMadviseWorks)
    222222    {
    223         /*
    224         * It is not fatal if we fail here but a forked child (e.g. the ALSA sound server)
    225         * could crash. Linux < 2.6.16 does not implement madvise(MADV_DONTFORK) but the
    226         * kernel seems to split bigger VMAs and that is all that we want -- later we set the
    227         * VM_DONTCOPY attribute in supdrvOSLockMemOne().
    228         */
    229         if (madvise (pvPages, cbMmap, MADV_DONTFORK))
    230             LogRel(("SUPLib: madvise %p-%p failed\n", pvPages, cbMmap));
    231         *ppvPages = pvPages;
     223        /*
     224        * It is not fatal if we fail here but a forked child (e.g. the ALSA sound server)
     225        * could crash. Linux < 2.6.16 does not implement madvise(MADV_DONTFORK) but the
     226        * kernel seems to split bigger VMAs and that is all that we want -- later we set the
     227        * VM_DONTCOPY attribute in supdrvOSLockMemOne().
     228        */
     229        if (madvise (pvPages, cbMmap, MADV_DONTFORK))
     230            LogRel(("SUPLib: madvise %p-%p failed\n", pvPages, cbMmap));
     231        *ppvPages = pvPages;
    232232    }
    233233    else
    234234    {
    235         /*
    236         * madvise(MADV_DONTFORK) is not available (most probably Linux 2.4). Enclose any
    237         * mmapped region by two unmapped pages to guarantee that there is exactly one VM
    238         * area struct of the very same size as the mmap area.
    239         */
    240         mprotect(pvPages,                      PAGE_SIZE, PROT_NONE);
    241         mprotect(pvPages + cbMmap - PAGE_SIZE, PAGE_SIZE, PROT_NONE);
    242         *ppvPages = pvPages + PAGE_SIZE;
     235        /*
     236        * madvise(MADV_DONTFORK) is not available (most probably Linux 2.4). Enclose any
     237        * mmapped region by two unmapped pages to guarantee that there is exactly one VM
     238        * area struct of the very same size as the mmap area.
     239        */
     240        mprotect(pvPages,                      PAGE_SIZE, PROT_NONE);
     241        mprotect(pvPages + cbMmap - PAGE_SIZE, PAGE_SIZE, PROT_NONE);
     242        *ppvPages = pvPages + PAGE_SIZE;
    243243    }
    244244    memset(*ppvPages, 0, cPages << PAGE_SHIFT);
  • trunk/src/VBox/HostDrivers/Support/win/VBoxDrv.rc

    r22077 r26512  
    3636VS_VERSION_INFO VERSIONINFO
    3737   FILEVERSION          VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
    38    PRODUCTVERSION           VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
     38   PRODUCTVERSION       VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
    3939   FILEFLAGSMASK        VS_FFI_FILEFLAGSMASK
    4040   FILEFLAGS            0x0L
     
    4949         VALUE "CompanyName",      VBOX_RC_COMPANY_NAME
    5050         VALUE "FileDescription",  "VirtualBox Support Driver\0"
    51          VALUE "FileVersion",      VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
     51         VALUE "FileVersion",      VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
    5252         VALUE "InternalName",     "VBoxDrv.sys\0"
    5353         VALUE "LegalCopyright",   VBOX_RC_LEGAL_COPYRIGHT
    5454         VALUE "OriginalFilename", "VBoxDrv.sys\0"
    55          VALUE "ProductName",      "Sun VirtualBox\0"
     55         VALUE "ProductName",      "Sun VirtualBox\0"
    5656         VALUE "ProductVersion",   VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
    5757      END
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