summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch06.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-16 22:43:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-16 22:43:37 +0000
commit2a087f30a4e5d2b72e0bc046865bb7f5c4c5c22f (patch)
tree13aeb2a51322618ccc986361ebf6e3d72d989eb7 /doc/posix1003.1/ch06.t
parentAdded function status and data types (diff)
downloadrtems-2a087f30a4e5d2b72e0bc046865bb7f5c4c5c22f.tar.bz2
Added types, status of functions, cleaned up output of summarize.
Diffstat (limited to 'doc/posix1003.1/ch06.t')
-rw-r--r--doc/posix1003.1/ch06.t41
1 files changed, 23 insertions, 18 deletions
diff --git a/doc/posix1003.1/ch06.t b/doc/posix1003.1/ch06.t
index d7607fef7f..b18c101342 100644
--- a/doc/posix1003.1/ch06.t
+++ b/doc/posix1003.1/ch06.t
@@ -13,7 +13,7 @@
@subsection Create an Inter-Process Channel
@example
-pipe(), Function
+pipe(), Function, Unimplemented
@end example
@section File Descriptor Manipulation
@@ -21,8 +21,8 @@ pipe(), Function
@subsection Duplicate an Open File Descriptor
@example
-dup(), Function
-dup2(), Function
+dup(), Function, Unimplemented
+dup2(), Function, Unimplemented
@end example
@section File Descriptor Deassignment
@@ -30,7 +30,7 @@ dup2(), Function
@subsection Close a File
@example
-close(), Function
+close(), Function, Partial Implementation
@end example
@section Input and Output
@@ -38,13 +38,13 @@ close(), Function
@subsection Read from a File
@example
-read(), Function
+read(), Function, Partial Implementation
@end example
@subsection Write to a File
@example
-write(), Function
+write(), Function, Partial Implementation
@end example
@section Control Operations on Files
@@ -54,13 +54,14 @@ write(), Function
@subsection File Control
@example
-fcntl(), Function
+struct flock, Type, Unimplemented
+fcntl(), Function, Unimplemented
@end example
@subsection Reposition Read/Write File Offset
@example
-lseek(), Function
+lseek(), Function, Partial Implementation
@end example
@section File Synchronization
@@ -68,64 +69,68 @@ lseek(), Function
@subsection Synchronize the State of a File
@example
-fsync(), Function
+fsync(), Function, Unimplemented
@end example
@subsection Synchronize the Data of a File
@example
-fdatasync(), Function
+fdatasync(), Function, Unimplemented
@end example
@section Asynchronous Input and Output
@subsection Data Definitions for Asynchronous Input and Output
+@example
+struct aiocb, Type, Dummy Implementation
+@end example
+
@subsection Asynchronous Read
@example
-aio_read(), Function
+aio_read(), Function, Dummy Implementation
@end example
@subsection Asynchronous Write
@example
-aio_write(), Function
+aio_write(), Function, Dummy Implementation
@end example
@subsection List Directed I/O
@example
-aio_listio(), Function
+lio_listio(), Function, Dummy Implementation
@end example
@subsection Retrieve Error Status of Asynchronous I/O Operation
@example
-aio_error(), Function
+aio_error(), Function, Dummy Implementation
@end example
@subsection Retrieve Return Status of Asynchronous I/O Operation
@example
-aio_return(), Function
+aio_return(), Function, Dummy Implementation
@end example
@subsection Cancel Asynchronous I/O Request
@example
-aio_cancel(), Function
+aio_cancel(), Function, Dummy Implementation
@end example
@subsection Wait for Asynchronous I/O Request
@example
-aio_suspend(), Function
+aio_suspend(), Function, Dummy Implementation
@end example
@subsection Asynchronous File Synchronization
@example
-aio_fsync(), Function
+aio_fsync(), Function, Dummy Implementation
@end example