mirror of https://github.com/AxioDL/logvisor.git
made frame count atomic
This commit is contained in:
parent
c61ff288b9
commit
34f2f028a9
|
@ -102,7 +102,7 @@ extern std::atomic_size_t ErrorCount;
|
|||
* The default value is zero, the app is responsible for updating it
|
||||
* within its main loop.
|
||||
*/
|
||||
extern uint64_t FrameIndex;
|
||||
extern std::atomic_uint_fast64_t FrameIndex;
|
||||
|
||||
/**
|
||||
* @brief Restore centralized logger vector to default state (silent operation)
|
||||
|
|
|
@ -59,7 +59,7 @@ static std::chrono::steady_clock MonoClock;
|
|||
static std::chrono::steady_clock::time_point GlobalStart = MonoClock.now();
|
||||
static inline std::chrono::steady_clock::duration CurrentUptime()
|
||||
{return MonoClock.now() - GlobalStart;}
|
||||
uint64_t FrameIndex = 0;
|
||||
std::atomic_uint_fast64_t FrameIndex(0);
|
||||
|
||||
#if _WIN32
|
||||
static HANDLE Term = 0;
|
||||
|
@ -143,8 +143,9 @@ struct ConsoleLogger : public ILogger
|
|||
{
|
||||
fprintf(stderr, BOLD "[");
|
||||
fprintf(stderr, GREEN "%5.4f ", tmd);
|
||||
if (FrameIndex)
|
||||
fprintf(stderr, "(%lu) ", FrameIndex);
|
||||
uint_fast64_t fIdx = FrameIndex.load();
|
||||
if (fIdx)
|
||||
fprintf(stderr, "(%lu) ", fIdx);
|
||||
switch (severity)
|
||||
{
|
||||
case Info:
|
||||
|
@ -173,8 +174,9 @@ struct ConsoleLogger : public ILogger
|
|||
{
|
||||
fprintf(stderr, "[");
|
||||
fprintf(stderr, "%5.4f ", tmd);
|
||||
if (FrameIndex)
|
||||
fprintf(stderr, "(%lu) ", FrameIndex);
|
||||
uint_fast64_t fIdx = FrameIndex.load();
|
||||
if (fIdx)
|
||||
fprintf(stderr, "(%lu) ", fIdx);
|
||||
switch (severity)
|
||||
{
|
||||
case Info:
|
||||
|
@ -300,8 +302,9 @@ struct FileLogger : public ILogger
|
|||
if (thrName)
|
||||
fprintf(fp, " (%s)", thrName);
|
||||
fprintf(fp, " %5.4f", tmd);
|
||||
if (FrameIndex)
|
||||
fprintf(fp, " (%lu)", FrameIndex);
|
||||
uint_fast64_t fIdx = FrameIndex.load();
|
||||
if (fIdx)
|
||||
fprintf(fp, " (%lu)", fIdx);
|
||||
fprintf(fp, "] ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue