1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// This file was removed in 2.0J
#include "stdarg.h"
#include "PR/os_internal.h"
#include "PR/ultralog.h"
#include "PR/ultraerror.h"
#include "macros.h"
void __osLogWrite(OSLog* log, s16 code, s16 numArgs, va_list argPtr);
static void __osDefaultHandler(s16 code, s16 numArgs, ...);
static u32 errorLogData[19] ALIGNED(8);
static OSLog errorLog ALIGNED(8) = {
OS_ERROR_MAGIC, // magic
sizeof(errorLogData), // len
errorLogData, // base
0, //startCount
0, //writeOffset
};
OSErrorHandler __osErrorHandler = __osDefaultHandler;
static void __osDefaultHandler(s16 code, s16 numArgs, ...) {
va_list argPtr;
va_start(argPtr, numArgs);
__osLogWrite(&errorLog, code, numArgs, argPtr);
osFlushLog(&errorLog);
va_end(argPtr);
}
|