AuroraRuntime/Source/Telemetry/Telemetry.cpp
Reece 510928e62e [*] Linux should not raise int3 unless the binary is a debug one
TODO: investigate registering an int3 signal handler to prevent crashing under internal builds
[*] Amend MemoryViews
[*] Begin shifting towards MemoryView based binary APIs
[*] Fix public RSA key leak
[+] Some clean up and possible bug fixes
2021-09-15 00:56:26 +01:00

53 lines
718 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Telemetry.cpp
Date: 2021-6-17
Author: Reece
***/
#include <RuntimeInternal.hpp>
#include <Debug/Debug.hpp>
#include "Telemetry.hpp"
namespace Aurora::Telemetry
{
void InsertOSError(const Debug::OSError_t &osError)
{
}
void InsertMsgError(const Debug::LastError &error)
{
}
void InsertCError(AuSInt cError)
{
}
void InsertManualFence(AuUInt32 fence)
{
}
void Report(Telemetry::NewBlockboxEntry &entry)
{
}
void ReportSysInfo()
{
}
void Init()
{
ReportSysInfo();
}
AUKN_SYM void Mayday()
{
}
}