diff options
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/dv-sockser.c | 8 | ||||
-rw-r--r-- | sim/common/sim-io.c | 19 |
2 files changed, 10 insertions, 17 deletions
diff --git a/sim/common/dv-sockser.c b/sim/common/dv-sockser.c index 698cab8..82f45cd 100644 --- a/sim/common/dv-sockser.c +++ b/sim/common/dv-sockser.c @@ -37,6 +37,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <sys/time.h> #include <sys/types.h> +#include "nonblocking.h" + #include "sim-main.h" #include "sim-assert.h" #include "sim-options.h" @@ -253,17 +255,13 @@ connected_p (SIM_DESC sd) return 0; /* Set non-blocking i/o. */ -#if defined(F_GETFL) && defined(O_NONBLOCK) - flags = fcntl (sockser_fd, F_GETFL); - flags |= O_NONBLOCK; - if (fcntl (sockser_fd, F_SETFL, flags) == -1) + if (set_nonblocking_flag (sockser_fd, true)) { sim_io_eprintf (sd, "unable to set nonblocking i/o"); close (sockser_fd); sockser_fd = -1; return 0; } -#endif return 1; } diff --git a/sim/common/sim-io.c b/sim/common/sim-io.c index fc0d42f..5a89984 100644 --- a/sim/common/sim-io.c +++ b/sim/common/sim-io.c @@ -33,6 +33,8 @@ #undef open +#include "nonblocking.h" + #include "sim-main.h" #include "sim-io.h" #include "sim/callback.h" @@ -347,23 +349,20 @@ sim_io_poll_read (SIM_DESC sd, char *buf, int sizeof_buf) { -#if defined(O_NONBLOCK) && defined(F_GETFL) && defined(F_SETFL) int fd = STATE_CALLBACK (sd)->fdmap[sim_io_fd]; - int flags; int status; int nr_read; int result; STATE_CALLBACK (sd)->last_errno = 0; /* get the old status */ - flags = fcntl (fd, F_GETFL, 0); - if (flags == -1) + status = get_nonblocking_flag (fd); + if (status == -1) { - perror ("sim_io_poll_read"); + perror ("sim_io_read_stdin"); return 0; } /* temp, disable blocking IO */ - status = fcntl (fd, F_SETFL, flags | O_NONBLOCK); - if (status == -1) + if (status == 0 && set_nonblocking_flag (fd, true) == -1) { perror ("sim_io_read_stdin"); return 0; @@ -381,16 +380,12 @@ sim_io_poll_read (SIM_DESC sd, STATE_CALLBACK (sd)->last_errno = errno; } /* return to regular vewing */ - status = fcntl (fd, F_SETFL, flags); - if (status == -1) + if (status == 0 && set_nonblocking_flag (fd, false) == -1) { perror ("sim_io_read_stdin"); /* return 0; */ } return result; -#else - return sim_io_read (sd, sim_io_fd, buf, sizeof_buf); -#endif } int |