You've already forked hackerlibultra
mirror of
https://github.com/HackerN64/hackerlibultra.git
synced 2026-01-21 10:37:53 -08:00
* Thread profiler, host files, gio files * Wrap readhost.c and writehost.c files in #ifndef _FINALROM
12 lines
225 B
C
12 lines
225 B
C
#include "osint_debug.h"
|
|
|
|
void osThreadProfileClear(OSId id) {
|
|
register OSIntMask saveMask = __osDisableInt();
|
|
|
|
thprof[id].flag = 0;
|
|
thprof[id].count = 0;
|
|
thprof[id].time = 0;
|
|
|
|
__osRestoreInt(saveMask);
|
|
}
|