summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/libcsupport/src/libio.c1
-rw-r--r--c/src/lib/ChangeLog4
-rw-r--r--c/src/lib/libc/libio.c1
-rw-r--r--cpukit/libcsupport/src/libio.c1
4 files changed, 7 insertions, 0 deletions
diff --git a/c/src/exec/libcsupport/src/libio.c b/c/src/exec/libcsupport/src/libio.c
index c878db6247..ad3f775ff5 100644
--- a/c/src/exec/libcsupport/src/libio.c
+++ b/c/src/exec/libcsupport/src/libio.c
@@ -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 },
diff --git a/c/src/lib/ChangeLog b/c/src/lib/ChangeLog
index f149b62985..2d9f5bc48f 100644
--- a/c/src/lib/ChangeLog
+++ b/c/src/lib/ChangeLog
@@ -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
diff --git a/c/src/lib/libc/libio.c b/c/src/lib/libc/libio.c
index c878db6247..ad3f775ff5 100644
--- a/c/src/lib/libc/libio.c
+++ b/c/src/lib/libc/libio.c
@@ -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 },
diff --git a/cpukit/libcsupport/src/libio.c b/cpukit/libcsupport/src/libio.c
index c878db6247..ad3f775ff5 100644
--- a/cpukit/libcsupport/src/libio.c
+++ b/cpukit/libcsupport/src/libio.c
@@ -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 },