// Copyright (c) 2020 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _Message_MetricType_HeaderFile #define _Message_MetricType_HeaderFile //! Specifies kind of report information to collect enum Message_MetricType { Message_MetricType_None, //!< no computation Message_MetricType_ThreadCPUUserTime, //!< OSD_Chronometer::GetThreadCPU user time Message_MetricType_ThreadCPUSystemTime, //!< OSD_Chronometer::GetThreadCPU system time Message_MetricType_ProcessCPUUserTime, //!< OSD_Chronometer::GetProcessCPU user time Message_MetricType_ProcessCPUSystemTime, //!< OSD_Chronometer::GetProcessCPU system time Message_MetricType_MemPrivate, //!< OSD_MemInfo::MemPrivate Message_MetricType_MemVirtual, //!< OSD_MemInfo::MemVirtual Message_MetricType_MemWorkingSet, //!< OSD_MemInfo::MemWorkingSet Message_MetricType_MemWorkingSetPeak, //!< OSD_MemInfo::MemWorkingSetPeak Message_MetricType_MemSwapUsage, //!< OSD_MemInfo::MemSwapUsage Message_MetricType_MemSwapUsagePeak, //!< OSD_MemInfo::MemSwapUsagePeak Message_MetricType_MemHeapUsage //!< OSD_MemInfo::MemHeapUsage }; #endif // _Message_MetricType_HeaderFile