summaryrefslogtreecommitdiffstats
path: root/doc/posix_users/process.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-06-28 19:14:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-06-28 19:14:44 +0000
commit0a535af128773487c42b1c416755c892a0914560 (patch)
tree7b834c51974368e4bd90c49ef07ac5c8c9da54ca /doc/posix_users/process.t
parent2002-06-28 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-0a535af128773487c42b1c416755c892a0914560.tar.bz2
2001-06-28 Joel Sherrill <joel@OARcorp.com>
* preface.texi, procenv.t, process.t, signal.t, stamp-vti, version.texi: Updated as part of starting a sweep on the POSIX User's Guide.
Diffstat (limited to 'doc/posix_users/process.t')
-rw-r--r--doc/posix_users/process.t22
1 files changed, 19 insertions, 3 deletions
diff --git a/doc/posix_users/process.t b/doc/posix_users/process.t
index 4b23172a25..7bb4bb12ad 100644
--- a/doc/posix_users/process.t
+++ b/doc/posix_users/process.t
@@ -10,7 +10,10 @@
@section Introduction
-The process creation and execution manager is ...
+The process creation and execution manager provides the
+functionality associated with the creation and termination
+of processes.
+
The directives provided by the process creation and execution manager are:
@@ -30,11 +33,24 @@ The directives provided by the process creation and execution manager are:
@section Background
-There is currently no text in this section.
+POSIX process functionality can not be completely
+supported by RTEMS. This is because RTEMS provides no memory
+protection and implements a @i{single process, multi-threaded
+execution model}. In this light, RTEMS provides none of the
+routines that are associated with the creation of new processes.
+However, since the entire RTEMS application (e.g. executable)
+is logically a single POSIX process, RTEMS is able to provide
+implementations of many operations on processes. The rule of
+thumb is that those routines provide a meaningful result.
+For example, @code{getpid()} returns the node number.
@section Operations
-There is currently no text in this section.
+The only functionality method defined by this manager which is
+supported by RTEMS is the @code{_exit} service. The
+implementation of @code{_exit} shuts the application down and
+is equivalent to invoking either @code{exit} or
+@code{rtems_shutdown_executive}.
@section Directives