This is an automated email from Gerrit. "Chris Pardy <christopher.pa...@nuvation.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7832
-- gerrit commit a7c44bcc9fa6d4bd0595f43306ed43ff25d4d7c7 Author: Chris Pardy <christopher.pa...@nuvation.com> Date: Thu Jul 27 11:37:32 2023 -0400 src/rtos/ThreadX.c: Clean up comment indentation. Change-Id: I483147c713e1d13797604373d1f1417e4f76f079 Signed-off-by: Chris Pardy <christopher.pa...@nuvation.com> diff --git a/src/rtos/ThreadX.c b/src/rtos/ThreadX.c index 2782a3bd5a..bb70f2fa27 100644 --- a/src/rtos/ThreadX.c +++ b/src/rtos/ThreadX.c @@ -133,51 +133,51 @@ struct threadx_params { static const struct threadx_params threadx_params_list[] = { { "cortex_m", /* target_name */ - 4, /* pointer_width; */ - 8, /* thread_stack_offset; */ - 40, /* thread_name_offset; */ - 48, /* thread_state_offset; */ - 136, /* thread_next_offset */ - NULL, /* stacking_info */ - 1, /* stacking_info_nb */ - get_stacking_info_cortex_m, /* fn_get_stacking_info */ - NULL, /* fn_is_thread_id_valid */ + 4, /* pointer_width; */ + 8, /* thread_stack_offset; */ + 40, /* thread_name_offset; */ + 48, /* thread_state_offset; */ + 136, /* thread_next_offset */ + NULL, /* stacking_info */ + 1, /* stacking_info_nb */ + get_stacking_info_cortex_m, /* fn_get_stacking_info */ + NULL, /* fn_is_thread_id_valid */ }, { "cortex_r4", /* target_name */ - 4, /* pointer_width; */ - 8, /* thread_stack_offset; */ - 40, /* thread_name_offset; */ - 48, /* thread_state_offset; */ - 136, /* thread_next_offset */ + 4, /* pointer_width; */ + 8, /* thread_stack_offset; */ + 40, /* thread_name_offset; */ + 48, /* thread_state_offset; */ + 136, /* thread_next_offset */ &rtos_standard_cortex_r4_stacking, /* stacking_info */ - 1, /* stacking_info_nb */ - NULL, /* fn_get_stacking_info */ - NULL, /* fn_is_thread_id_valid */ + 1, /* stacking_info_nb */ + NULL, /* fn_get_stacking_info */ + NULL, /* fn_is_thread_id_valid */ }, { "arm926ejs", /* target_name */ - 4, /* pointer_width; */ - 8, /* thread_stack_offset; */ - 40, /* thread_name_offset; */ - 48, /* thread_state_offset; */ - 136, /* thread_next_offset */ + 4, /* pointer_width; */ + 8, /* thread_stack_offset; */ + 40, /* thread_name_offset; */ + 48, /* thread_state_offset; */ + 136, /* thread_next_offset */ rtos_threadx_arm926ejs_stacking, /* stacking_info */ - 2, /* stacking_info_nb */ + 2, /* stacking_info_nb */ get_stacking_info_arm926ejs, /* fn_get_stacking_info */ is_thread_id_valid_arm926ejs, /* fn_is_thread_id_valid */ }, { "hla_target", /* target_name */ - 4, /* pointer_width; */ - 8, /* thread_stack_offset; */ - 40, /* thread_name_offset; */ - 48, /* thread_state_offset; */ - 136, /* thread_next_offset */ + 4, /* pointer_width; */ + 8, /* thread_stack_offset; */ + 40, /* thread_name_offset; */ + 48, /* thread_state_offset; */ + 136, /* thread_next_offset */ &rtos_standard_cortex_m3_stacking, /* stacking_info */ - 1, /* stacking_info_nb */ - NULL, /* fn_get_stacking_info */ - NULL, /* fn_is_thread_id_valid */ + 1, /* stacking_info_nb */ + NULL, /* fn_get_stacking_info */ + NULL, /* fn_is_thread_id_valid */ }, }; --