diff options
author | Tim Newsome <tim@sifive.com> | 2018-06-11 13:04:44 -0700 |
---|---|---|
committer | Tim Newsome <tim@sifive.com> | 2018-06-11 13:04:44 -0700 |
commit | 68336052f8368eb6934530062f1af34ab2586d37 (patch) | |
tree | 7ef1bee7299421180dd543d8eeb4f7f3e5dc2eb8 /src | |
parent | 6766fa1dda84e5b9243a2ab60bca77de92ea178d (diff) | |
download | riscv-openocd-68336052f8368eb6934530062f1af34ab2586d37.zip riscv-openocd-68336052f8368eb6934530062f1af34ab2586d37.tar.gz riscv-openocd-68336052f8368eb6934530062f1af34ab2586d37.tar.bz2 |
Remove dead code.
Change-Id: I1c9325c0f416a79992ee09b26766a2a18a8a061c
Diffstat (limited to 'src')
-rw-r--r-- | src/rtos/riscv_debug.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/rtos/riscv_debug.c b/src/rtos/riscv_debug.c index 90caf40..fa8f13a 100644 --- a/src/rtos/riscv_debug.c +++ b/src/rtos/riscv_debug.c @@ -22,11 +22,6 @@ static int riscv_create_rtos(struct target *target) struct riscv_rtos *r = calloc(1, sizeof(*r)); target->rtos->rtos_specific_params = r; -#if 0 - r->target_hartid = 0; - r->target_any_hart = true; - r->target_every_hart = true; -#endif target->rtos->current_threadid = 1; target->rtos->current_thread = 1; @@ -266,12 +261,6 @@ static int riscv_get_thread_reg_list(struct rtos *rtos, int64_t thread_id, char { LOG_DEBUG("Updating RISC-V register list for hart %d", (int)(thread_id - 1)); -#if 0 - LOG_ERROR(" Not actually updating"); - *hex_reg_list = 0; - return JIM_OK; -#endif - size_t n_regs = 32; size_t xlen = 64; size_t reg_chars = xlen / 8 * 2; |