VirtualBox

Changeset 36521 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Apr 4, 2011 12:24:23 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70942
Message:

iprt/cpp/lock.h: RTLock, RTLockMtx -> RTCLock, RTClockMtx. 'RTC' is now the official C++ class prefix for IPRT.

Location:
trunk/src/VBox/Main/xml
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/xml/Makefile.kup

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
  • trunk/src/VBox/Main/xml/Settings.cpp

    r36405 r36521  
    694694            med.strFormat = "RAW";
    695695        }
    696    
     696
    697697        if (t == DVDImage)
    698698            med.hdType = MediumType_Readonly;
     
    44594459#elif defined(RT_OS_LINUX)
    44604460    // on Linux, we need to check at runtime what's actually supported...
    4461     static RTLockMtx s_mtx;
     4461    static RTCLockMtx s_mtx;
    44624462    static AudioDriverType_T s_linuxDriver = -1;
    4463     RTLock lock(s_mtx);
     4463    RTCLock lock(s_mtx);
    44644464    if (s_linuxDriver == (AudioDriverType_T)-1)
    44654465    {
     
    44734473# if defined(VBOX_WITH_ALSA)
    44744474            /* Check if we can load the ALSA library */
    4475             if (RTLdrIsLoadable("libasound.so.2"))
     4475             if (RTLdrIsLoadable("libasound.so.2"))
    44764476                s_linuxDriver = AudioDriverType_ALSA;
    4477        else
     4477        else
    44784478# endif /* VBOX_WITH_ALSA */
    44794479            s_linuxDriver = AudioDriverType_OSS;
Note: See TracChangeset for help on using the changeset viewer.

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