aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/riscv_debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtos/riscv_debug.h')
-rw-r--r--src/rtos/riscv_debug.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rtos/riscv_debug.h b/src/rtos/riscv_debug.h
new file mode 100644
index 0000000..539edf2
--- /dev/null
+++ b/src/rtos/riscv_debug.h
@@ -0,0 +1,13 @@
+#ifndef RTOS__RISCV_H
+#define RTOS__RISCV_H
+
+#include "rtos.h"
+
+struct riscv_rtos {
+ /* The index into the thread list used to handle */
+ int qs_thread_info_offset;
+};
+
+int riscv_update_threads(struct rtos *rtos);
+
+#endif