rtems_status_code rtems_object_get_class_information( int the_api, int the_class, rtems_object_api_class_information *info );
RTEMS_SUCCESSFUL
- information obtained successfully
RTEMS_INVALID_ADDRESS
- info
is NULL
RTEMS_INVALID_NUMBER
- invalid api
or the_class
If successful, the structure located at info
will be filled
in with information about the specified api
/the_class
pairing.
This service returns information about the object class indicated by the
specified api
and the_class
. This structure is defined as
follows:
typedef struct { rtems_id minimum_id; rtems_id maximum_id; int maximum; bool auto_extend; int unallocated; } rtems_object_api_class_information;
This directive is strictly local and does not impact task scheduling.
Copyright © 1988-2008 OAR Corporation