RTEMS
Files | Functions
Classic Object Implementation

Files

file  objectimpl.h
 Implementation Interfaces for Classic Objects.
 
file  rtemsnametoid.c
 _RTEMS_Name_to_id() Implementation
 

Functions

rtems_status_code _RTEMS_Name_to_id (uint32_t name, uint32_t node, Objects_Id *id, const Objects_Information *information)
 Calls _Objects_Name_to_id_u32() and converts the status. More...
 

Detailed Description

Function Documentation

◆ _RTEMS_Name_to_id()

rtems_status_code _RTEMS_Name_to_id ( uint32_t  name,
uint32_t  node,
Objects_Id id,
const Objects_Information information 
)

Calls _Objects_Name_to_id_u32() and converts the status.

Parameters
nameis the name of the object to find.
nodeis the set of nodes to search.
[out]idis the pointer to an object identifier variable or NULL. The object identifier will be stored in the referenced variable, if the operation was successful.
informationis the pointer to an object class information block.
Return values
RTEMS_SUCCESSFULThe operations was successful.
RTEMS_INVALID_ADDRESSThe id parameter was NULL.
RTEMS_INVALID_NAMENo object exists with the specified name on the specified node set.

Definition at line 43 of file rtemsnametoid.c.