summaryrefslogtreecommitdiffstats
path: root/c/src/exec
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-05 15:46:02 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-05 15:46:02 +0000
commit5a9a5ecbc5309d5229926f720127807a75ffd30f (patch)
tree10c8ef76caa5352f1357527310bd5a76c41f7c6f /c/src/exec
parent2000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-5a9a5ecbc5309d5229926f720127807a75ffd30f.tar.bz2
2000-09-05 Joel Sherrill <joel@OARcorp.com>
* libio.c: Added O_NONBLOCK to list of flags.
Diffstat (limited to 'c/src/exec')
-rw-r--r--c/src/exec/libcsupport/src/libio.c1
1 files changed, 1 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 },