2000-09-05 Joel Sherrill <joel@OARcorp.com>

* rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
	RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
	and to work with the converted flags.
This commit is contained in:
Joel Sherrill
2000-09-05 15:47:44 +00:00
parent 5a9a5ecbc5
commit bdcf02d460
6 changed files with 21 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2000-09-05 Joel Sherrill <joel@OARcorp.com>
* rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
and to work with the converted flags.
2000-09-01 Rosimildo daSilva <rdasilva@connecttel.com>
* emfdb.c: Removed stray semi-colon. Reported on GoAhead

View File

@@ -730,7 +730,7 @@ rtems_bsdnet_fcntl (int cmd, rtems_libio_t *iop)
rtems_bsdnet_semaphore_release ();
return EBADF;
}
if (iop->flags & O_NONBLOCK)
if (iop->flags & LIBIO_FLAGS_NO_DELAY)
so->so_state |= SS_NBIO;
else
so->so_state &= ~SS_NBIO;

View File

@@ -1,3 +1,9 @@
2000-09-05 Joel Sherrill <joel@OARcorp.com>
* rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
and to work with the converted flags.
2000-09-01 Rosimildo daSilva <rdasilva@connecttel.com>
* emfdb.c: Removed stray semi-colon. Reported on GoAhead

View File

@@ -730,7 +730,7 @@ rtems_bsdnet_fcntl (int cmd, rtems_libio_t *iop)
rtems_bsdnet_semaphore_release ();
return EBADF;
}
if (iop->flags & O_NONBLOCK)
if (iop->flags & LIBIO_FLAGS_NO_DELAY)
so->so_state |= SS_NBIO;
else
so->so_state &= ~SS_NBIO;

View File

@@ -1,3 +1,9 @@
2000-09-05 Joel Sherrill <joel@OARcorp.com>
* rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
and to work with the converted flags.
2000-09-01 Rosimildo daSilva <rdasilva@connecttel.com>
* emfdb.c: Removed stray semi-colon. Reported on GoAhead

View File

@@ -730,7 +730,7 @@ rtems_bsdnet_fcntl (int cmd, rtems_libio_t *iop)
rtems_bsdnet_semaphore_release ();
return EBADF;
}
if (iop->flags & O_NONBLOCK)
if (iop->flags & LIBIO_FLAGS_NO_DELAY)
so->so_state |= SS_NBIO;
else
so->so_state &= ~SS_NBIO;