RTEMS
Public Attributes | List of all members
rtems_driver_address_table Struct Reference

This structure contains the device driver entries. More...

#include <io.h>

Public Attributes

rtems_device_driver_entry initialization_entry
 This member is the device driver initialization entry. More...
 
rtems_device_driver_entry open_entry
 This member is the device driver open entry. More...
 
rtems_device_driver_entry close_entry
 This member is the device driver close entry. More...
 
rtems_device_driver_entry read_entry
 This member is the device driver read entry. More...
 
rtems_device_driver_entry write_entry
 This member is the device driver write entry. More...
 
rtems_device_driver_entry control_entry
 This member is the device driver control entry. More...
 

Detailed Description

This structure contains the device driver entries.

This structure is used to register a device driver via rtems_io_register_driver().

Definition at line 134 of file io.h.

Member Data Documentation

◆ close_entry

rtems_device_driver_entry rtems_driver_address_table::close_entry

This member is the device driver close entry.

This entry is called by rtems_io_close().

Definition at line 154 of file io.h.

◆ control_entry

rtems_device_driver_entry rtems_driver_address_table::control_entry

This member is the device driver control entry.

This entry is called by rtems_io_control().

Definition at line 175 of file io.h.

◆ initialization_entry

rtems_device_driver_entry rtems_driver_address_table::initialization_entry

This member is the device driver initialization entry.

This entry is called by rtems_io_initialize().

Definition at line 140 of file io.h.

◆ open_entry

rtems_device_driver_entry rtems_driver_address_table::open_entry

This member is the device driver open entry.

This entry is called by rtems_io_open().

Definition at line 147 of file io.h.

◆ read_entry

rtems_device_driver_entry rtems_driver_address_table::read_entry

This member is the device driver read entry.

This entry is called by rtems_io_read().

Definition at line 161 of file io.h.

◆ write_entry

rtems_device_driver_entry rtems_driver_address_table::write_entry

This member is the device driver write entry.

This entry is called by rtems_io_write().

Definition at line 168 of file io.h.


The documentation for this struct was generated from the following file: