Skip to content

Commit

Permalink
Remove dead code.
Browse files Browse the repository at this point in the history
Change-Id: I1c9325c0f416a79992ee09b26766a2a18a8a061c
  • Loading branch information
timsifive committed Jun 11, 2018
1 parent 6766fa1 commit 6833605
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/rtos/riscv_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 6833605

Please sign in to comment.