aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/nuttx.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-08-24 11:42:15 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2021-05-29 21:33:23 +0100
commit8446e140181e85bab82daa273c1637b1eab01bd5 (patch)
tree769f3dc231ec31c873a89053370a6a6a125a46b8 /src/rtos/nuttx.c
parent8f6dd512c7753ce1252283b208bb8f8880f93f37 (diff)
downloadriscv-openocd-8446e140181e85bab82daa273c1637b1eab01bd5.zip
riscv-openocd-8446e140181e85bab82daa273c1637b1eab01bd5.tar.gz
riscv-openocd-8446e140181e85bab82daa273c1637b1eab01bd5.tar.bz2
openocd: use macro ARRAY_SIZE()
There are still few cases where the macro ARRAY_SIZE() should be used in place of custom code. Use ARRAY_SIZE() whenever possible. Change-Id: Iba0127a02357bc704fe639e08562a4f9aa7011df Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/6260 Reviewed-by: Xiang W <wxjstz@126.com> Tested-by: jenkins
Diffstat (limited to 'src/rtos/nuttx.c')
-rw-r--r--src/rtos/nuttx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtos/nuttx.c b/src/rtos/nuttx.c
index 0705b17..c525471 100644
--- a/src/rtos/nuttx.c
+++ b/src/rtos/nuttx.c
@@ -314,7 +314,7 @@ static int nuttx_update_threads(struct rtos *rtos)
state = tcb.dat[state_offset - 8];
thread->extra_info_str = NULL;
- if (state < sizeof(task_state_str)/sizeof(char *)) {
+ if (state < ARRAY_SIZE(task_state_str)) {
thread->extra_info_str = malloc(256);
snprintf(thread->extra_info_str, 256, "pid:%d, %s",
tcb.dat[pid_offset - 8] |