mirror of https://github.com/wolfpld/tracy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
435 B
C++
37 lines
435 B
C++
#ifndef __TRACYSYSTIME_HPP__
|
|
#define __TRACYSYSTIME_HPP__
|
|
|
|
#if defined _WIN32 || defined __linux__ || defined __APPLE__
|
|
# define TRACY_HAS_SYSTIME
|
|
#else
|
|
# include <sys/param.h>
|
|
#endif
|
|
|
|
#ifdef BSD
|
|
# define TRACY_HAS_SYSTIME
|
|
#endif
|
|
|
|
#ifdef TRACY_HAS_SYSTIME
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
class SysTime
|
|
{
|
|
public:
|
|
SysTime();
|
|
float Get();
|
|
|
|
void ReadTimes();
|
|
|
|
private:
|
|
uint64_t idle, used;
|
|
};
|
|
|
|
}
|
|
#endif
|
|
|
|
#endif
|