zephyr/doc/object/object_basic.rst
Rodrigo Caballero 67405bb918 Add Object Documentation
Adds the basic kernel objects' documentation describing the function of
tasks, fiber and interrupt service routines.
Adds the nanokernel objects' docuementation describing the function of
the most important nanokernel objects.
Adds the microkernel objects' documentation describing the function of
the most important microkernel objects.

Changes the index.rst file to include the Object Documentation.

Change-Id: Ib35d973cc3575a7ecc32c4ab175e05cb298e3306
Signed-off-by: Rodrigo Caballero <rodrigo.caballero.abraham@intel.com>
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-02-05 20:14:11 -05:00

26 lines
803 B
ReStructuredText

.. _basicObjects:
Execution Contexts
##################
Tasks, fibers and interrupt service routines serve as the basis of the
operating system functionality. The purpose of this section is to
describe how this execution contexts operate, their behavior and their
implementation. Using this information you should be able to understand
what each context is capable of, how it operates and where its limits
are.
This section does not replace the Application Program Interface
documentation but rather complements it. The examples should provide
you with enough insight to understand the functionality but are not
meant to replace the detailed in-code documentation.
.. toctree:: Table of Contents
:maxdepth: 2
object_basic_fibers.rst
object_basic_interrupts.rst
object_basic_tasks.rst