summaryrefslogtreecommitdiffstats
path: root/doc/new_chapters/files.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-03 18:30:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-03 18:30:21 +0000
commit832e33c5ec020e2e24e85f8945ed0ab21fb2ff52 (patch)
tree49bcf2be23d30b0df21327c8a36ed358c34797ba /doc/new_chapters/files.t
parentUnder allcoated task stacks. (diff)
downloadrtems-832e33c5ec020e2e24e85f8945ed0ab21fb2ff52.tar.bz2
Added many new chapters
Diffstat (limited to 'doc/new_chapters/files.t')
-rw-r--r--doc/new_chapters/files.t603
1 files changed, 603 insertions, 0 deletions
diff --git a/doc/new_chapters/files.t b/doc/new_chapters/files.t
new file mode 100644
index 0000000000..c297c30364
--- /dev/null
+++ b/doc/new_chapters/files.t
@@ -0,0 +1,603 @@
+@c
+@c COPYRIGHT (c) 1988-1998.
+@c On-Line Applications Research Corporation (OAR).
+@c All rights reserved.
+@c
+@c $Id$
+@c
+
+@chapter Files and Directories Manager
+
+@section Introduction
+
+The
+files and directories manager is ...
+
+The directives provided by the files and directories manager are:
+
+@itemize @bullet
+@item @code{opendir} -
+@item @code{readdir} -
+@item @code{readdir_r} -
+@item @code{rewinddir} -
+@item @code{closedir} -
+@item @code{chdir} -
+@item @code{getcwd} -
+@item @code{open} -
+@item @code{creat} -
+@item @code{umask} -
+@item @code{link} -
+@item @code{mkdir} -
+@item @code{mkfifo} -
+@item @code{unlink} -
+@item @code{rmdir} -
+@item @code{rename} -
+@item @code{stat} -
+@item @code{fstat} -
+@item @code{access} -
+@item @code{chmod} -
+@item @code{fchmod} -
+@item @code{chown} -
+@item @code{utime} -
+@item @code{ftrunctate} -
+@item @code{pathconf} -
+@item @code{fpathconf} -
+@end itemize
+
+@section Background
+
+@section Operations
+
+@section Directives
+
+This section details the files and directories manager's directives.
+A subsection is dedicated to each of this manager's directives
+and describes the calling sequence, related constants, usage,
+and status codes.
+
+@page
+@subsection opendir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int opendir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection readdir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int readdir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection readdir_r - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int readdir_r(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection rewinddir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int rewinddir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection closedir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int closedir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection chdir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int chdir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection getcwd - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int getcwd(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection open - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int open(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection creat - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int creat(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection umask - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int umask(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection link - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int link(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection mkdir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int mkdir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection mkfifo - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int mkfifo(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection unlink - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int unlink(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection rmdir - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int rmdir(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection rename - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int rename(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection stat - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int stat(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection fstat - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int fstat(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection access - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int access(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection chmod - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int chmod(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection fchmod - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int fchmod(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection chown - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int chown(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection utime - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int utime(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection ftrunctate - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int ftrunctate(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection pathconf - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int pathconf(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+
+@page
+@subsection fpathconf - XXX
+
+@subheading CALLING SEQUENCE:
+
+@ifset is-C
+@example
+int fpathconf(
+);
+@end example
+@end ifset
+
+@ifset is-Ada
+@end ifset
+
+@subheading STATUS CODES:
+
+@subheading DESCRIPTION:
+
+@subheading NOTES:
+