Changeset bdcf02d4 in rtems
- Timestamp:
- 09/05/00 15:47:44 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 695ccb21
- Parents:
- 5a9a5ec
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libnetworking/ChangeLog
r5a9a5ec rbdcf02d4 1 2000-09-05 Joel Sherrill <joel@OARcorp.com> 2 3 * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal 4 RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion 5 and to work with the converted flags. 6 1 7 2000-09-01 Rosimildo daSilva <rdasilva@connecttel.com> 2 8 -
c/src/exec/libnetworking/rtems/rtems_syscall.c
r5a9a5ec rbdcf02d4 731 731 return EBADF; 732 732 } 733 if (iop->flags & O_NONBLOCK)733 if (iop->flags & LIBIO_FLAGS_NO_DELAY) 734 734 so->so_state |= SS_NBIO; 735 735 else -
c/src/libnetworking/ChangeLog
r5a9a5ec rbdcf02d4 1 2000-09-05 Joel Sherrill <joel@OARcorp.com> 2 3 * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal 4 RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion 5 and to work with the converted flags. 6 1 7 2000-09-01 Rosimildo daSilva <rdasilva@connecttel.com> 2 8 -
c/src/libnetworking/rtems/rtems_syscall.c
r5a9a5ec rbdcf02d4 731 731 return EBADF; 732 732 } 733 if (iop->flags & O_NONBLOCK)733 if (iop->flags & LIBIO_FLAGS_NO_DELAY) 734 734 so->so_state |= SS_NBIO; 735 735 else -
cpukit/libnetworking/ChangeLog
r5a9a5ec rbdcf02d4 1 2000-09-05 Joel Sherrill <joel@OARcorp.com> 2 3 * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal 4 RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion 5 and to work with the converted flags. 6 1 7 2000-09-01 Rosimildo daSilva <rdasilva@connecttel.com> 2 8 -
cpukit/libnetworking/rtems/rtems_syscall.c
r5a9a5ec rbdcf02d4 731 731 return EBADF; 732 732 } 733 if (iop->flags & O_NONBLOCK)733 if (iop->flags & LIBIO_FLAGS_NO_DELAY) 734 734 so->so_state |= SS_NBIO; 735 735 else
Note: See TracChangeset
for help on using the changeset viewer.