aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/riscv_debug.h
blob: 539edf288518b843083f86d62f5ce1542004aabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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