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:
@@ -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++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user