rtems_status_code rtems_object_get_class_information( uint32_t the_api, uint32_t 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;
uint32_t maximum;
bool auto_extend;
uint32_t unallocated;
} rtems_object_api_class_information;
This directive is strictly local and does not impact task scheduling.
Copyright © 1988-2008 OAR Corporation