Reece
e5e36bd887
[*] Fix deadlock in the async subsystem (NoLockShutdown vs Shutdown in exception handler) [+] Added ProccessMap NT variant [+] Added ToolHelp image profiling [*] Improved exception awareness [*] Delegated SpawnThread to isolated TU, ready for reuse for RunAs and XNU Open - now with horrible evil alloc that could fail [+] Added header for future api 'UtilRun' [*] Improve NT core detection [*] Changed small affinity bitmap to AuUInt64 instead of AuUInt32 [+] Added data structure to hold cpuids/affinity masks [+] Implemented logger sinks [+] Implemented logger glue logic [*] Began migrating older loggers to sink-based default devices [*] Minor refactors [*] Improved internal exception discarding, not yet nothrow capable [*] Minor create directory fix
29 lines
601 B
C++
29 lines
601 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Time.hpp
|
|
Date: 2021-6-9
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include <Aurora/Time/ETimezoneShift.hpp>
|
|
#include <Aurora/Locale/LocaleStrings.hpp>
|
|
|
|
namespace Aurora::Time
|
|
{
|
|
static AuString ConvertMSToTimescale(AuUInt32 ms)
|
|
{
|
|
return Locale::ConvertMSToTimescale(ms);
|
|
}
|
|
|
|
static AuString ConvertNSToTimescale(AuUInt64 ns)
|
|
{
|
|
return Locale::ConvertNSToTimescale(ns);
|
|
}
|
|
}
|
|
|
|
#include "Clock.hpp"
|
|
#include "Timer.hpp"
|
|
#include "TimerHighRes.hpp"
|
|
#include "DebugBenchmark.hpp" |