blob: 42788f86400b065ef44e4c348466f245f848937f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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);
}
|