PxMbxRequest_EvWait()
Request a mailbox object while waiting for events.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
PxMbx_t PxMbxRequest_EvWait (PxOpool_t opoolid, PxEvents_t events); - ARGUMENTS
|
|
|
- RETURN VALUES
-
-
Invalid mailbox object handle on failure
-
Valid mailbox object handle on success
-
- ERROR CODES
-
PXERR_ACCESS_RIGHTThe calling task has not the right to access the object pool
PXERR_OPOOL_ILLOPOOLopoolidis not a valid object poolPXERR_OBJ_ABORTEDRequest aborted by an event
PXERR_MBX_ILLMBXInvalid mailbox in mailbox command
PXERR_EVENT_ZEROThe given event mask is zero
PXERR_GLOBAL_ILLEGAL_COREThe requested object pool is not on the same core
PXERR_OBJ_NOOBJNo free object is available
PXERR_OBJ_ILLOBJThe passed object handle is not valid
PXERR_INTERNAL_INCONSISTENCYInconsistency of internal structures
- DESCRIPTION
-
The
PxMbxRequest_EvWaitfunction creates a mailbox object by converting a free object from object poolopool. The object handle is returned. If there is no free object available,PxMbxRequest_EvWaitwaits until either there is a free object or an event specified in the set events occurs.
- IMPLEMENTATION GUIDELINES
-
- Before call
-
-
opoolidmust be a valid PXROS-HR object pool and the calling task must have the access right to take objects from this object pool (V). The validity ofopoolidmay also be checked by thePxOpoolIsValidmacro (F). The object pool must be created on the same core as the caller runs on. The creator core id can be read with the macroPxOpoolCoreIdand the own core id withPxGetCoreId(C). Typically the task’s default object poolPXOpoolTaskdefaultis used for this purpose. -
The parameter
eventscontains a bitmask of events awaited and should not be zero. Typically the event mask is a constant (V).
-
- After call
-
-
The returned value is a structure of type
PxMbxEvent_t. The received events are stored in theeventspart, the mailbox id is given in thembxpart of the structure. This id may be checked with one of the following macros:-
PxMbxIdIsValid()must be true. -
PxMbxIdGet()must not be_PXIllegalObjId. -
PxMbxIdError()must bePXERR_NOERRORotherwise the returned error code has to be interpreted (C).
-
-
- Best Practice
-
-
PxMbxRequest_EvWaitmay block, if no PXROS-HR object is available and no instance (task or handler) sends an event. If blocking calls are prohibited,PxMbxRequest_NoWaitshould be used instead or the call should be monitored by the PXROS-HRPxTomechanism. -
PxMbxRequest_EvWaitshould only be called during initialization to ensure the availability of the mailbox object.
-
- SEE ALSO
- USAGE
-
#include "pxdef.h" #define MY_EVENT_MASK 0x1l PxMbx_t Mbx = PxMbxRequest_EvWait(opoolid, MY_EVENT_MASK); if (PxMbxIdError(Mbx) != PXERR_NOERROR) { // Report error }