summaryrefslogtreecommitdiff
path: root/lib/ultralib/src/debug/threadprofilereadtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ultralib/src/debug/threadprofilereadtime.c')
-rw-r--r--lib/ultralib/src/debug/threadprofilereadtime.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/ultralib/src/debug/threadprofilereadtime.c b/lib/ultralib/src/debug/threadprofilereadtime.c
new file mode 100644
index 0000000..c5c4cca
--- /dev/null
+++ b/lib/ultralib/src/debug/threadprofilereadtime.c
@@ -0,0 +1,43 @@
+#include "osint_debug.h"
+
+OSTime osThreadProfileReadTime(OSId id) {
+ OSTime adjust = 0;
+ u32 now_time = osGetCount();
+
+ if (!__osThprofFlag) {
+ __osError(140, 0);
+ return 0;
+ }
+ if (id >= THPROF_IDMAX) {
+ __osError(144, 1, id);
+ return 0;
+ }
+
+ if (id == osGetThreadId(NULL) && __osThprofFunc != NULL) {
+ adjust = now_time - __osThprofLastTimer;
+ }
+ return thprof[id].time + adjust;
+}
+
+OSTime osThreadProfileReadTimeTh(OSThread* thread) {
+ OSId id;
+ OSTime adjust = 0;
+ u32 now_time = osGetCount();
+
+ if (!__osThprofFlag) {
+ __osError(142, 0);
+ return 0;
+ }
+
+ id = osGetThreadId(thread);
+
+ if (id >= THPROF_IDMAX) {
+ __osError(146, 1, id);
+ return 0;
+ }
+
+ if (id == osGetThreadId(NULL) && __osThprofFunc != NULL) {
+ adjust = now_time - __osThprofLastTimer;
+ }
+ return thprof[id].time + adjust;
+}