Files
hackerlibultra/src/debug/threadprofileclear.c
Tharo c4ff4aeb0a Thread profiler, host files, gio files for libgultra_d (#26)
* Thread profiler, host files, gio files

* Wrap readhost.c and writehost.c files in #ifndef _FINALROM
2022-05-14 09:04:16 -04:00

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);
}