AuroraRuntime/Source/Telemetry/Telemetry.hpp
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

19 lines
485 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Telemetry.hpp
Date: 2021-6-17
Author: Reece
***/
#pragma once
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 ReportSysInfo();
void Report(Telemetry::NewBlockboxEntry &entry);
void Init();
}