ICGroupCpuInfo.h#
Fully qualified name: omni/platforminfo/ICGroupCpuInfo.h
File members: omni/platforminfo/ICGroupCpuInfo.h
// Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this software and related documentation without an express
// license agreement from NVIDIA CORPORATION is strictly prohibited.
//
#pragma once
#include "ILimitedCpuInfo.h" // for `kNoQuotaSet` constant.
namespace omni
{
namespace platforminfo
{
class ICGroupCpuInfo;
class ICGroupCpuInfo_abi
: public omni::core::Inherits<omni::core::IObject, OMNI_TYPE_ID("omni.platforminfo.ICGroupCpuInfo")>
{
protected:
virtual size_t getCpuSetLogicalCoreCount_abi() const noexcept = 0;
virtual float getCoreUsageQuota_abi() const noexcept = 0;
virtual size_t getCoreSetList_abi(OMNI_ATTR("in, out, count=maxCores, not_null") int32_t* cores,
size_t maxCores) const noexcept = 0;
};
} // namespace platforminfo
} // namespace omni
#define OMNI_BIND_INCLUDE_INTERFACE_DECL
#include "ICGroupCpuInfo.gen.h"
class omni::platforminfo::ICGroupCpuInfo : public omni::core::Generated<omni::platforminfo::ICGroupCpuInfo_abi>
{
};
#define OMNI_BIND_INCLUDE_INTERFACE_IMPL
#include "ICGroupCpuInfo.gen.h"