summaryrefslogtreecommitdiffstats
path: root/cpukit/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-03 18:44:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-03 18:44:44 +0000
commita456074d7897bc301ff15c245095285e375c75f9 (patch)
treee3257626550b14ce1cc5602aa305948794e7588d /cpukit/posix
parentCompleted pass at constants. (diff)
downloadrtems-a456074d7897bc301ff15c245095285e375c75f9.tar.bz2
Made these have real constants.
Diffstat (limited to 'cpukit/posix')
-rw-r--r--cpukit/posix/include/aio.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/posix/include/aio.h b/cpukit/posix/include/aio.h
index 504559c857..6348da4c15 100644
--- a/cpukit/posix/include/aio.h
+++ b/cpukit/posix/include/aio.h
@@ -25,21 +25,21 @@
*/
#define AIO_CANCELED 0 /* all requested operations have been canceled */
-#define AIO_NOTCANCELED 0 /* some of the operations could not be canceled */
+#define AIO_NOTCANCELED 1 /* some of the operations could not be canceled */
/* since they are in progress */
-#define AIO_ALLDONE 0 /* none of the requested operations could be */
+#define AIO_ALLDONE 2 /* none of the requested operations could be */
/* canceled since they are already complete */
/* lio_listio() options */
#define LIO_WAIT 0 /* calling process is to suspend until the */
/* operation is complete */
-#define LIO_NOWAIT 0 /* calling process is to continue execution while */
+#define LIO_NOWAIT 1 /* calling process is to continue execution while */
/* the operation is performed and no notification */
/* shall be given when the operation is completed */
-#define LIO_READ 0 /* request a read() */
-#define LIO_WRITE 0 /* request a write() */
-#define LIO_NOP 0 /* no transfer is requested */
+#define LIO_READ 2 /* request a read() */
+#define LIO_WRITE 3 /* request a write() */
+#define LIO_NOP 4 /* no transfer is requested */
/*
* 6.7.1.1 Asynchronous I/O Control Block, P1003.1b-1993, p. 151