Ref T570 Measure sortHint using true CPU time routines.

This commit is contained in:
Mat Sutcliffe
2019-03-30 00:27:32 +00:00
parent c8d2f2be7e
commit 5d75d58784
3 changed files with 114 additions and 5 deletions

30
src/blackmisc/cputime.h Normal file
View File

@@ -0,0 +1,30 @@
/* Copyright (C) 2019
* swift Project Community / Contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated,
* or distributed except according to the terms contained in the LICENSE file.
*/
//! \file
#ifndef BLACKMISC_CPUTIME_H
#define BLACKMISC_CPUTIME_H
#include "blackmisc/blackmiscexport.h"
namespace BlackMisc
{
/*!
* Get the time in milliseconds that the CPU has spent executing the current process.
* This is the sum of getThreadCpuTimeMs() for all threads.
*/
BLACKMISC_EXPORT int getProcessCpuTimeMs();
/*!
* Get the time in milliseconds that the CPU has spent executing the current thread.
*/
BLACKMISC_EXPORT int getThreadCpuTimeMs();
}
#endif