927f9d8873
This ensures that "info threads" is accurate as soon as gdb connects. Also print out number of triggers that is discovered in examine().
14 lines
222 B
C
14 lines
222 B
C
#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
|