LeviLamina
Loading...
Searching...
No Matches
AtomicTimeAccumulator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mCount;
10 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mNanoseconds;
11 ::ll::TypedStorage<8, 8, ::std::atomic<uint64>> mMaxSample;
12 // NOLINTEND
13
14public:
15 // member functions
16 // NOLINTBEGIN
17 MCAPI_C void addTime(::std::chrono::nanoseconds const& time);
18 // NOLINTEND
19};
Definition AtomicTimeAccumulator.h:5