fix Z - thanks masa!

This commit is contained in:
Lightos1
2026-04-12 01:05:11 +02:00
parent b417099a4a
commit accdf6dc34
3 changed files with 17 additions and 11 deletions

View File

@@ -82,7 +82,12 @@ namespace fileUtils {
FILE* file = fopen(FILE_LOG_FILE_PATH, "a");
if (file) {
fprintf(file, "[%lu] ", armGetSystemTick());
struct timespec now;
struct tm *timeInfo;
clock_gettime(CLOCK_REALTIME, &now);
timeInfo = localtime(&now.tv_sec);
fprintf(file, "[%02d:%02d:%02d] ", timeInfo->tm_hour, timeInfo->tm_min, timeInfo->tm_sec);
vfprintf(file, format, args);
fprintf(file, "\n");
fclose(file);

View File

@@ -56,19 +56,19 @@ extern "C"
// Ty to MasaGratoR for this!
// This is done to save some space as they have no practical use in our case
__attribute__((used)) void* __real___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *));
__attribute__((used)) void* __real__Unwind_Resume();
__attribute__((used)) void* __real___gxx_personality_v0();
void* __real___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *));
void* __real__Unwind_Resume();
void* __real___gxx_personality_v0();
__attribute__((used)) void __wrap___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *)) {
void __wrap___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *)) {
abort();
}
__attribute__((used)) void __wrap__Unwind_Resume() {
void __wrap__Unwind_Resume() {
return;
}
__attribute__((used)) void __wrap___gxx_personality_v0() {
void __wrap___gxx_personality_v0() {
return;
}