diff options
author | Ozkan Sezer <sezero@sourceware.org> | 2010-05-26 22:40:24 +0000 |
---|---|---|
committer | Ozkan Sezer <sezero@sourceware.org> | 2010-05-26 22:40:24 +0000 |
commit | 363a6e9f2c3fe1e25f8fa986347948897f189f39 (patch) | |
tree | 71182a438b05d879f96dc50f3dcd232c29f312cb /sim/cris/dv-rv.c | |
parent | 9db8dccb1711d06bd180437fcd8c78c5f0981193 (diff) | |
download | gdb-363a6e9f2c3fe1e25f8fa986347948897f189f39.zip gdb-363a6e9f2c3fe1e25f8fa986347948897f189f39.tar.gz gdb-363a6e9f2c3fe1e25f8fa986347948897f189f39.tar.bz2 |
2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
gdb/
* ser-tcp.c (net_open): Check error return from socket() call by its
equality to -1 not by it being negative.
(net_close): Likewise.
gdb/gdbserver/
* gdbreplay.c (remote_open): Check error return from socket() call by
its equality to -1 not by it being negative.
* remote-utils.c (remote_open): Likewise.
sim/arm/
* communicate.c (MYread_char): Check error return from accept() call
by its equality to -1 not by it being negative.
(MYread_charwait): Likewise.
* main.c (main): Likewise for both socket() and accept() calls.
sim/common/
* dv-sockser.c (dv_sockser_init): Check error return from socket()
call by its equality to -1 not by it being negative.
(connected_p): Likewise for accept() call.
sim/cris/
* dv-rv.c (hw_rv_init_socket): Check error return from socket() call
by its equality to -1 not by it being negative.
(hw_rv_write): Likewise.
(hw_rv_handle_incoming): Likewise.
(hw_rv_poll_once): Likewise.
* rvdummy.c (setupsocket): Likewise.
(main): Likewise for accept() call as returned from setupsocket().
sim/m32c/
* main.c (setup_tcp_console): Check error return from socket() call
by its equality to -1 not by it being negative.
Diffstat (limited to 'sim/cris/dv-rv.c')
-rw-r--r-- | sim/cris/dv-rv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sim/cris/dv-rv.c b/sim/cris/dv-rv.c index bdc6f2e..45ef79d 100644 --- a/sim/cris/dv-rv.c +++ b/sim/cris/dv-rv.c @@ -404,7 +404,7 @@ hw_rv_write (struct hw *me, /* If we don't have a valid fd here, it's because we got an error initially, and we suppressed that error. */ - if (rv->fd < 0) + if (rv->fd == -1) hw_abort (me, "couldn't open a connection to %s:%d because: %s", rv->host, rv->port, strerror (rv->saved_errno)); @@ -637,7 +637,7 @@ hw_rv_handle_incoming (struct hw *me, { hw_rv_read (me, cbuf, 3); - if (rv->fd < 0) + if (rv->fd == -1) return; len = cbuf[0] + cbuf[1] * 256 - 3; @@ -723,7 +723,7 @@ hw_rv_poll_once (struct hw *me) int ret; struct timeval tv; - if (rv->fd < 0) + if (rv->fd == -1) /* Connection has died or was never initiated. */ return; @@ -887,7 +887,7 @@ hw_rv_init_socket (struct hw *me) server.sin_port = htons (rv->port); sock = socket (AF_INET, SOCK_STREAM, 0); - if (sock < 0) + if (sock == -1) hw_abort (me, "can't get a socket for %s:%d connection", rv->host, rv->port); |