VirtualBox

Changeset 48007 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Aug 23, 2013 7:29:19 AM (11 years ago)
Author:
vboxsync
Message:

Main/Performance: IPRT status code here, not COM status code

File:
1 edited

Legend:

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

    r47925 r48007  
    5050int CollectorHAL::getHostCpuLoad(ULONG * /* user */, ULONG * /* kernel */, ULONG * /* idle */)
    5151{
    52     return E_NOTIMPL;
     52    return VERR_NOT_IMPLEMENTED;
    5353}
    5454
    5555int CollectorHAL::getProcessCpuLoad(RTPROCESS  /* process */, ULONG * /* user */, ULONG * /* kernel */)
    5656{
    57     return E_NOTIMPL;
     57    return VERR_NOT_IMPLEMENTED;
    5858}
    5959
    6060int CollectorHAL::getRawHostCpuLoad(uint64_t * /* user */, uint64_t * /* kernel */, uint64_t * /* idle */)
    6161{
    62     return E_NOTIMPL;
     62    return VERR_NOT_IMPLEMENTED;
    6363}
    6464
    6565int CollectorHAL::getRawHostNetworkLoad(const char * /* name */, uint64_t * /* rx */, uint64_t * /* tx */)
    6666{
    67     return E_NOTIMPL;
     67    return VERR_NOT_IMPLEMENTED;
    6868}
    6969
    7070int CollectorHAL::getRawHostDiskLoad(const char * /* name */, uint64_t * /* disk_ms */, uint64_t * /* total_ms */)
    7171{
    72     return E_NOTIMPL;
     72    return VERR_NOT_IMPLEMENTED;
    7373}
    7474
    7575int CollectorHAL::getRawProcessCpuLoad(RTPROCESS  /* process */, uint64_t * /* user */, uint64_t * /* kernel */, uint64_t * /* total */)
    7676{
    77     return E_NOTIMPL;
     77    return VERR_NOT_IMPLEMENTED;
    7878}
    7979
    8080int CollectorHAL::getHostMemoryUsage(ULONG * /* total */, ULONG * /* used */, ULONG * /* available */)
    8181{
    82     return E_NOTIMPL;
     82    return VERR_NOT_IMPLEMENTED;
    8383}
    8484
    8585int CollectorHAL::getHostFilesystemUsage(const char * /* name */, ULONG * /* total */, ULONG * /* used */, ULONG * /* available */)
    8686{
    87     return E_NOTIMPL;
     87    return VERR_NOT_IMPLEMENTED;
    8888}
    8989
    9090int CollectorHAL::getHostDiskSize(const char * /* name */, uint64_t * /* size */)
    9191{
    92     return E_NOTIMPL;
     92    return VERR_NOT_IMPLEMENTED;
    9393}
    9494
    9595int CollectorHAL::getProcessMemoryUsage(RTPROCESS /* process */, ULONG * /* used */)
    9696{
    97     return E_NOTIMPL;
     97    return VERR_NOT_IMPLEMENTED;
    9898}
    9999
    100100int CollectorHAL::getDiskListByFs(const char * /* name */, DiskList& /* listUsage */, DiskList& /* listLoad */)
    101101{
    102     return E_NOTIMPL;
     102    return VERR_NOT_IMPLEMENTED;
    103103}
    104104
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