VirtualBox

Changeset 49744 in vbox


Ignore:
Timestamp:
Dec 2, 2013 7:03:40 PM (11 years ago)
Author:
vboxsync
Message:

6813 stage 2 rev3 issues on Solaris sorted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/HostImpl.cpp

    r49743 r49744  
    25922592 * @retval  list drives found will be attached to this list
    25932593 */
    2594 bool Host::getFloppyInfoFromHal(std::list< ComObjPtr<Medium> > &list)
     2594bool Host::i_getFloppyInfoFromHal(std::list< ComObjPtr<Medium> > &list)
    25952595{
    25962596    bool halSuccess = false;
     
    27502750 * Helper function to parse the given mount file and add found entries
    27512751 */
    2752 void Host::parseMountTable(char *mountTable, std::list< ComObjPtr<Medium> > &list)
     2752void Host::i_parseMountTable(char *mountTable, std::list< ComObjPtr<Medium> > &list)
    27532753{
    27542754#ifdef RT_OS_LINUX
     
    27982798            {
    27992799                /** @todo check whether we've already got the drive in our list! */
    2800                 if (validateDevice(mnt_dev, true))
     2800                if (i_validateDevice(mnt_dev, true))
    28012801                {
    28022802                    ComObjPtr<Medium> hostDVDDriveObj;
     
    28302830                {
    28312831                    char *rawDevName = getfullrawname((char *)mountName);
    2832                     if (validateDevice(rawDevName, true))
     2832                    if (i_validateDevice(rawDevName, true))
    28332833                    {
    28342834                        ComObjPtr<Medium> hostDVDDriveObj;
     
    28502850 * Helper function to check whether the given device node is a valid drive
    28512851 */
    2852 bool Host::validateDevice(const char *deviceNode, bool isCDROM)
     2852bool Host::i_validateDevice(const char *deviceNode, bool isCDROM)
    28532853{
    28542854    struct stat statInfo;
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