mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-17 03:52:28 +08:00

The manager documentation is a consolidation of the comments in Doxygen markup and the documentation sources in Sphinx markup. The documentation was transfered to interface specification items. This header file was generated from the items by a script. Update #3993.
67 lines
2.3 KiB
ReStructuredText
67 lines
2.3 KiB
ReStructuredText
.. SPDX-License-Identifier: CC-BY-SA-4.0
|
|
|
|
.. Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
|
|
.. Copyright (C) 1988, 2008 On-Line Applications Research Corporation (OAR)
|
|
|
|
.. Do not manually edit this file. It is part of the RTEMS quality process
|
|
.. and was automatically generated.
|
|
..
|
|
.. If you find something that needs to be fixed or worded better please
|
|
.. post a report to an RTEMS mailing list or raise a bug report:
|
|
..
|
|
.. https://docs.rtems.org/branches/master/user/support/bugs.html
|
|
..
|
|
.. For information on updating and regenerating please refer to:
|
|
..
|
|
.. https://docs.rtems.org/branches/master/eng/req/howto.html
|
|
|
|
.. Generated from spec:/rtems/io/if/group
|
|
|
|
.. _IOManagerIntroduction:
|
|
|
|
Introduction
|
|
============
|
|
|
|
.. The following list was generated from:
|
|
.. spec:/rtems/io/if/register-driver
|
|
.. spec:/rtems/io/if/unregister-driver
|
|
.. spec:/rtems/io/if/initialize
|
|
.. spec:/rtems/io/if/register-name
|
|
.. spec:/rtems/io/if/open
|
|
.. spec:/rtems/io/if/close
|
|
.. spec:/rtems/io/if/read
|
|
.. spec:/rtems/io/if/write
|
|
.. spec:/rtems/io/if/control
|
|
|
|
The Input/Output (I/O) Manager provides a well-defined mechanism for accessing
|
|
device drivers and a structured methodology for organizing device drivers. The
|
|
directives provided by the I/O Manager are:
|
|
|
|
* :ref:`InterfaceRtemsIoRegisterDriver` - Registers and initializes the device
|
|
with the specified device driver address table and device major number in the
|
|
Device Driver Table.
|
|
|
|
* :ref:`InterfaceRtemsIoUnregisterDriver` - Removes a device driver specified
|
|
by the device major number from the Device Driver Table.
|
|
|
|
* :ref:`InterfaceRtemsIoInitialize` - Initializes the device specified by the
|
|
device major and minor numbers.
|
|
|
|
* :ref:`InterfaceRtemsIoRegisterName` - Registers the device specified by the
|
|
device major and minor numbers in the file system under the specified name.
|
|
|
|
* :ref:`InterfaceRtemsIoOpen` - Opens the device specified by the device major
|
|
and minor numbers.
|
|
|
|
* :ref:`InterfaceRtemsIoClose` - Closes the device specified by the device
|
|
major and minor numbers.
|
|
|
|
* :ref:`InterfaceRtemsIoRead` - Reads from the device specified by the device
|
|
major and minor numbers.
|
|
|
|
* :ref:`InterfaceRtemsIoWrite` - Writes to the device specified by the device
|
|
major and minor numbers.
|
|
|
|
* :ref:`InterfaceRtemsIoControl` - Controls the device specified by the device
|
|
major and minor numbers.
|