helper: rename camelcase symbols

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
This commit is contained in:
Antonio Borneo
2021-04-25 22:38:32 +02:00
parent 3d135a5c70
commit 9e358ac2c0
3 changed files with 9 additions and 9 deletions

View 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++;
}