diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:50:08 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:50:08 +0000 |
commit | c97caebccd07be7e5bae61d6d40921e01786ba06 (patch) | |
tree | ac6b27c4e75a0b30f2676c8ed7ca70a1048be2c4 /src/helper/replacements.c | |
parent | 2e779198535580515dfa9c8bfe1f3fe08abdb84b (diff) | |
download | riscv-openocd-c97caebccd07be7e5bae61d6d40921e01786ba06.zip riscv-openocd-c97caebccd07be7e5bae61d6d40921e01786ba06.tar.gz riscv-openocd-c97caebccd07be7e5bae61d6d40921e01786ba06.tar.bz2 |
Remove whitespace at end of lines, step 2.
- Replace '\s*$' with ''.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2380 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/replacements.c')
-rw-r--r-- | src/helper/replacements.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/helper/replacements.c b/src/helper/replacements.c index d7e6254..7663b0e 100644 --- a/src/helper/replacements.c +++ b/src/helper/replacements.c @@ -27,7 +27,7 @@ #include <stdlib.h> #include <string.h> -/* +/* * clear_malloc * * will alloc memory and clear it @@ -203,11 +203,11 @@ int win_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct time FD_ZERO(&aread); FD_ZERO(&awrite); FD_ZERO(&aexcept); - + limit = GetTickCount() + ms_total; do { retcode = 0; - + if (sock_max_fd >= 0) { /* overwrite the zero'd sets here; the select call * will clear those that are not active */ @@ -245,7 +245,7 @@ int win_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct time if (SAFE_FD_ISSET(handle_slot_to_fd[i], rfds)) { DWORD dwBytes; long handle = _get_osfhandle(handle_slot_to_fd[i]); - + if (PeekNamedPipe((HANDLE)handle, NULL, 0, NULL, &dwBytes, NULL)) { /* check to see if gdb pipe has data available */ |