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

* libio.c: Added O_NONBLOCK to list of flags.
This commit is contained in:
Joel Sherrill
2000-09-05 15:46:02 +00:00
parent d28bfd2777
commit 5a9a5ecbc5
4 changed files with 7 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ rtems_assoc_t access_modes_assoc[] = {
rtems_assoc_t status_flags_assoc[] = {
{ "NO DELAY", LIBIO_FLAGS_NO_DELAY, O_NDELAY },
{ "NONBLOCK", LIBIO_FLAGS_NO_DELAY, O_NONBLOCK },
{ "APPEND", LIBIO_FLAGS_APPEND, O_APPEND },
{ "CREATE", LIBIO_FLAGS_CREATE, O_CREAT },
{ 0, 0, 0 },

View File

@@ -1,4 +1,8 @@
2000-09-05 Joel Sherrill <joel@OARcorp.com>
* libio.c: Added O_NONBLOCK to list of flags.
2000-08-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Remove libcpu and libbsp

View File

@@ -109,6 +109,7 @@ rtems_assoc_t access_modes_assoc[] = {
rtems_assoc_t status_flags_assoc[] = {
{ "NO DELAY", LIBIO_FLAGS_NO_DELAY, O_NDELAY },
{ "NONBLOCK", LIBIO_FLAGS_NO_DELAY, O_NONBLOCK },
{ "APPEND", LIBIO_FLAGS_APPEND, O_APPEND },
{ "CREATE", LIBIO_FLAGS_CREATE, O_CREAT },
{ 0, 0, 0 },