aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/eCos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtos/eCos.c')
-rw-r--r--src/rtos/eCos.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rtos/eCos.c b/src/rtos/eCos.c
index e4080695..e38e11f0 100644
--- a/src/rtos/eCos.c
+++ b/src/rtos/eCos.c
@@ -172,7 +172,6 @@ static int eCos_update_threads(struct rtos *rtos)
sizeof(struct thread_detail) * thread_list_size);
rtos->thread_details->threadid = 1;
rtos->thread_details->exists = true;
- rtos->thread_details->display_str = NULL;
rtos->thread_details->extra_info_str = NULL;
rtos->thread_details->thread_name_str = malloc(sizeof(tmp_str));
strcpy(rtos->thread_details->thread_name_str, tmp_str);
@@ -267,8 +266,6 @@ static int eCos_update_threads(struct rtos *rtos)
rtos->thread_details[tasks_found].exists = true;
- rtos->thread_details[tasks_found].display_str = NULL;
-
tasks_found++;
prev_thread_ptr = thread_index;