Changeset 5a9a5ec in rtems


Ignore:
Timestamp:
09/05/00 15:46:02 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
bdcf02d4
Parents:
d28bfd27
Message:

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

  • libio.c: Added O_NONBLOCK to list of flags.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libcsupport/src/libio.c

    rd28bfd27 r5a9a5ec  
    110110rtems_assoc_t status_flags_assoc[] = {
    111111  { "NO DELAY",  LIBIO_FLAGS_NO_DELAY,  O_NDELAY },
     112  { "NONBLOCK",  LIBIO_FLAGS_NO_DELAY,  O_NONBLOCK },
    112113  { "APPEND",    LIBIO_FLAGS_APPEND,    O_APPEND },
    113114  { "CREATE",    LIBIO_FLAGS_CREATE,    O_CREAT },
  • c/src/lib/ChangeLog

    rd28bfd27 r5a9a5ec  
     1
     22000-09-05      Joel Sherrill <joel@OARcorp.com>
     3
     4        * libio.c: Added O_NONBLOCK to list of flags.
    15
    262000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
  • c/src/lib/libc/libio.c

    rd28bfd27 r5a9a5ec  
    110110rtems_assoc_t status_flags_assoc[] = {
    111111  { "NO DELAY",  LIBIO_FLAGS_NO_DELAY,  O_NDELAY },
     112  { "NONBLOCK",  LIBIO_FLAGS_NO_DELAY,  O_NONBLOCK },
    112113  { "APPEND",    LIBIO_FLAGS_APPEND,    O_APPEND },
    113114  { "CREATE",    LIBIO_FLAGS_CREATE,    O_CREAT },
  • cpukit/libcsupport/src/libio.c

    rd28bfd27 r5a9a5ec  
    110110rtems_assoc_t status_flags_assoc[] = {
    111111  { "NO DELAY",  LIBIO_FLAGS_NO_DELAY,  O_NDELAY },
     112  { "NONBLOCK",  LIBIO_FLAGS_NO_DELAY,  O_NONBLOCK },
    112113  { "APPEND",    LIBIO_FLAGS_APPEND,    O_APPEND },
    113114  { "CREATE",    LIBIO_FLAGS_CREATE,    O_CREAT },
Note: See TracChangeset for help on using the changeset viewer.