helper: rename camelcase symbols
authorAntonio Borneo <borneo.antonio@gmail.com>
Sun, 25 Apr 2021 20:38:32 +0000 (22:38 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Fri, 2 Jul 2021 16:10:03 +0000 (17:10 +0100)
No cross dependency, just changes internal to each file/function.

Change-Id: I16568ddcd8304f5e6748c2e19f32421b047b0357
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/6300
Tested-by: jenkins
src/helper/log.c
src/helper/replacements.c
src/helper/util.c

index 36b59fe77198bd528ca81da56be12140a92a05d6..785a8bded6bed6f29732133d88ef645114bdff9f 100644 (file)
@@ -473,11 +473,11 @@ void kept_alive(void)
 /* if we sleep for extended periods of time, we must invoke keep_alive() intermittently */
 void alive_sleep(uint64_t ms)
 {
-       uint64_t napTime = 10;
-       for (uint64_t i = 0; i < ms; i += napTime) {
+       uint64_t nap_time = 10;
+       for (uint64_t i = 0; i < ms; i += nap_time) {
                uint64_t sleep_a_bit = ms - i;
-               if (sleep_a_bit > napTime)
-                       sleep_a_bit = napTime;
+               if (sleep_a_bit > nap_time)
+                       sleep_a_bit = nap_time;
 
                usleep(sleep_a_bit * 1000);
                keep_alive();
index f4ecb8dfcc5a719c48495e5ff1ad8ee8cfe30570..f8989974f936143459b46b774d5c41b977b8ab00 100644 (file)
@@ -235,14 +235,14 @@ int win_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct time
                                for (i = 0; i < n_handles; i++) {
                                        if (WAIT_OBJECT_0 == WaitForSingleObject(handles[i], 0)) {
                                                if (SAFE_FD_ISSET(handle_slot_to_fd[i], rfds)) {
-                                                       DWORD dwBytes;
+                                                       DWORD bytes;
                                                        intptr_t handle = (intptr_t) _get_osfhandle(
                                                                        handle_slot_to_fd[i]);
 
                                                        if (PeekNamedPipe((HANDLE)handle, NULL, 0,
-                                                                   NULL, &dwBytes, NULL)) {
+                                                                   NULL, &bytes, NULL)) {
                                                                /* check to see if gdb pipe has data available */
-                                                               if (dwBytes) {
+                                                               if (bytes) {
                                                                        FD_SET(handle_slot_to_fd[i], &aread);
                                                                        retcode++;
                                                                }
index dcd59e6eac0dea819c7d2c3da402fd09e69fbc38..be163b26da139f1e2d1bcaec1a15a62013a9b5b9 100644 (file)
@@ -24,7 +24,7 @@
 #include "log.h"
 #include "time_support.h"
 
-static int util_Jim_Command_ms(Jim_Interp *interp,
+static int jim_util_ms(Jim_Interp *interp,
        int argc,
        Jim_Obj * const *argv)
 {
@@ -45,7 +45,7 @@ static const struct command_registration util_command_handlers[] = {
        {
                .name = "ms",
                .mode = COMMAND_ANY,
-               .jim_handler = util_Jim_Command_ms,
+               .jim_handler = jim_util_ms,
                .help =
                        "Returns ever increasing milliseconds. Used to calculate differences in time.",
                .usage = "",