VirtualBox

Changeset 75737 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
Nov 26, 2018 3:44:41 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126937
Message:

HGCM: Replace C++-style inline members on VBOXHGCMSVCPARM with simple functions.
bugref:9172: Shared folder performance tuning
Changes in bugref:9172 caused a build regression on Ubuntu 18.10 due to the
use of RT_ZERO on a structure containing an embedded VBOXHGCMSVCPARM, as
VBOXHGCMSVCPARM had member functions and was therefore not a simple plain-
old-data structure. Rather than just doing the sensible thing and zeroing
it in a different way, I converted the inline member getters and setters to
standard inline C functions, including fixing callers. Actually I had planned
this for some time, as the member function use seemed a bit gratuitous in
hindsight.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/GuestDnDPrivate.h

    r74714 r75737  
    887887        }
    888888
    889         pParm->setPointer(pvTmp, cbBuf);
     889        HGCMSvcSetPv(pParm, pvTmp, cbBuf);
    890890        return VINF_SUCCESS;
    891891    }
     
    901901            return VERR_NO_MEMORY;
    902902
    903         pParm->setString(pszTemp);
     903        HGCMSvcSetStr(pParm, pszTemp);
    904904        return VINF_SUCCESS;
    905905    }
     
    911911            return VERR_NO_MEMORY;
    912912
    913         pParm->setUInt32(u32Val);
     913        HGCMSvcSetU32(pParm, u32Val);
    914914        return VINF_SUCCESS;
    915915    }
     
    921921            return VERR_NO_MEMORY;
    922922
    923         pParm->setUInt64(u64Val);
     923        HGCMSvcSetU64(pParm, u64Val);
    924924        return VINF_SUCCESS;
    925925    }
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