This is an automated email from Gerrit.

Antonio Borneo ([email protected]) just uploaded a new patch set to 
Gerrit, which you can find at http://openocd.zylin.com/5759

-- gerrit

commit 910510d7b159d8dd179b22559b3b4113beb3ffaf
Author: Antonio Borneo <[email protected]>
Date:   Sun Jul 12 00:25:53 2020 +0200

    rtos: fix minor typos
    
    Change-Id: I9ed4e2150a0a057397538b608d4a72bc48d0d64f
    Signed-off-by: Antonio Borneo <[email protected]>

diff --git a/src/rtos/FreeRTOS.c b/src/rtos/FreeRTOS.c
index c45d9d6..9a51974 100644
--- a/src/rtos/FreeRTOS.c
+++ b/src/rtos/FreeRTOS.c
@@ -245,7 +245,7 @@ static int FreeRTOS_update_threads(struct rtos *rtos)
                return ERROR_FAIL;
        }
        uint64_t top_used_priority = 0;
-       /* FIXME: endianess error on almost all target_read_buffer(), see also
+       /* FIXME: endianness error on almost all target_read_buffer(), see also
         * other rtoses */
        retval = target_read_buffer(rtos->target,
                        rtos->symbols[FreeRTOS_VAL_uxTopUsedPriority].address,
diff --git a/src/rtos/chromium-ec.c b/src/rtos/chromium-ec.c
index 92ed2cb..ae12a3b 100644
--- a/src/rtos/chromium-ec.c
+++ b/src/rtos/chromium-ec.c
@@ -306,7 +306,7 @@ static int chromium_ec_update_threads(struct rtos *rtos)
                        LOG_ERROR("Failed to get task %d's runtime", t);
                runtime =  target_buffer_get_u64(rtos->target, runtime_buf);
 
-               /* Priority is simply the positon in the array */
+               /* Priority is simply the position in the array */
                if (thread_ptr == current_task)
                        snprintf(thread_str_buf, sizeof(thread_str_buf),
                                 "State: Running, Priority: %u, Events: %" 
PRIx32 ", Runtime: %" PRIu64 "\n",
diff --git a/src/rtos/linux.c b/src/rtos/linux.c
index 63659bb..cd1ed21 100644
--- a/src/rtos/linux.c
+++ b/src/rtos/linux.c
@@ -188,7 +188,7 @@ static int linux_os_thread_reg_list(struct rtos *rtos,
                return ERROR_FAIL;
        }
 
-       /*  search target to perfom the access  */
+       /*  search target to perform the access  */
        struct reg **gdb_reg_list;
        struct target_list *head;
        head = target->head;
diff --git a/src/rtos/nuttx.c b/src/rtos/nuttx.c
index 322c7d1..3c90625 100644
--- a/src/rtos/nuttx.c
+++ b/src/rtos/nuttx.c
@@ -174,7 +174,7 @@ static int rcmd_offset(const char *cmd, const char *name)
 static int nuttx_thread_packet(struct connection *connection,
        char const *packet, int packet_size)
 {
-       char cmd[GDB_BUFFER_SIZE / 2 + 1] = ""; /* Extra byte for 
nul-termination */
+       char cmd[GDB_BUFFER_SIZE / 2 + 1] = ""; /* Extra byte for 
null-termination */
 
        if (!strncmp(packet, "qRcmd", 5)) {
                size_t len = unhexify((uint8_t *)cmd, packet + 6, sizeof(cmd));
diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c
index ff0fb92..8654994 100644
--- a/src/rtos/rtos.c
+++ b/src/rtos/rtos.c
@@ -228,7 +228,7 @@ int rtos_qsymbol(struct connection *connection, char const 
*packet, int packet_s
        int rtos_detected = 0;
        uint64_t addr = 0;
        size_t reply_len;
-       char reply[GDB_BUFFER_SIZE + 1], cur_sym[GDB_BUFFER_SIZE / 2 + 1] = ""; 
/* Extra byte for nul-termination */
+       char reply[GDB_BUFFER_SIZE + 1], cur_sym[GDB_BUFFER_SIZE / 2 + 1] = ""; 
/* Extra byte for null-termination */
        symbol_table_elem_t *next_sym = NULL;
        struct target *target = get_target_from_connection(connection);
        struct rtos *os = target->rtos;
@@ -447,7 +447,7 @@ int rtos_thread_packet(struct connection *connection, char 
const *packet, int pa
 static int rtos_put_gdb_reg_list(struct connection *connection,
                struct rtos_reg *reg_list, int num_regs)
 {
-       size_t num_bytes = 1; /* NUL */
+       size_t num_bytes = 1; /* NULL */
        for (int i = 0; i < num_regs; ++i)
                num_bytes += DIV_ROUND_UP(reg_list[i].size, 8) * 2;
 

-- 


_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to