Changeset bdcf02d4 in rtems


Ignore:
Timestamp:
09/05/00 15:47:44 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
695ccb21
Parents:
5a9a5ec
Message:

2000-09-05 Joel Sherrill <joel@…>

  • 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.
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libnetworking/ChangeLog

    r5a9a5ec rbdcf02d4  
     12000-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
    172000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
    28
  • c/src/exec/libnetworking/rtems/rtems_syscall.c

    r5a9a5ec rbdcf02d4  
    731731                        return EBADF;
    732732                }
    733                 if (iop->flags & O_NONBLOCK)
     733                if (iop->flags & LIBIO_FLAGS_NO_DELAY)
    734734                        so->so_state |= SS_NBIO;
    735735                else
  • c/src/libnetworking/ChangeLog

    r5a9a5ec rbdcf02d4  
     12000-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
    172000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
    28
  • c/src/libnetworking/rtems/rtems_syscall.c

    r5a9a5ec rbdcf02d4  
    731731                        return EBADF;
    732732                }
    733                 if (iop->flags & O_NONBLOCK)
     733                if (iop->flags & LIBIO_FLAGS_NO_DELAY)
    734734                        so->so_state |= SS_NBIO;
    735735                else
  • cpukit/libnetworking/ChangeLog

    r5a9a5ec rbdcf02d4  
     12000-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
    172000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
    28
  • cpukit/libnetworking/rtems/rtems_syscall.c

    r5a9a5ec rbdcf02d4  
    731731                        return EBADF;
    732732                }
    733                 if (iop->flags & O_NONBLOCK)
     733                if (iop->flags & LIBIO_FLAGS_NO_DELAY)
    734734                        so->so_state |= SS_NBIO;
    735735                else
Note: See TracChangeset for help on using the changeset viewer.