PxMcRequest_NoWait()
Create a memory class object with immediate return.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
PxMc_t PxMcRequest_NoWait (PxMcType_t mctype, PxSize_t size, PxOpool_t OpoolId); - ARGUMENTS
|
|
|
|
|
- RETURN VALUES
-
-
Valid memory class handle on success
-
Invalid memory class handle on failure
-
- 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_OBJ_NOOBJNo free object is available
PXERR_GLOBAL_ILLEGAL_COREThe requested object pool is not on the same core
PXERR_OBJ_ILLOBJThe passed object handle is not valid
PXERR_MC_ILLTYPEIllegal MC type
PXERR_MC_ILLSIZEInsufficient block size
PXERR_MC_ILLALIGNInvalid memory block or size alignment in memory insert
PXERR_INTERNAL_INCONSISTENCYInconsistency of internal structures
PXERR_UNSUPPORTED_MCTYPEmctypeis not supported (IfmctypeisPXMcVarsized,PXMcVarsizedAligned,PXMcVarsizedAdjusted) - DESCRIPTION
-
The
PxMcRequest_NoWaitfunction creates a memory class of typemctypeby converting a generic object from object poolOpoolId. The memory class object handle is returned. If there is no free object available, thePxMcRequest_NoWaitimmediately returns with error codePXERR_OBJ_NOOBJ. For each memory class type the size parameter has different meaning.The following memory class types exist:
-
PXMcFixsized
-
PXMcBuddyMemory
The
PXMcFixsizedmemory class can only manage memory blocks of the same size. The size parameter is set during memory class creation and defines the (common) size of any memory block managed by the memory class. The size parameter can be read byPxMcGetSizefunction.The PXMcBuddyMemory classes can manage memory blocks of different power of two sizes. Each block in the memory class is aligned to its size. The minimum block size is 32 bytes.
-
- 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 memory class type given in
mctypemust be of typePxMcType_tand may have one of the following values (V):-
PXMcFixsized -
PXMcVarsized -
PXMcVarsizedAligned -
PXMcVarsizedAdjusted
-
-
The
sizeparameter must have a plausible value (V). -
The calling task must have the access right to create new resources (V).
-
- After call
-
-
The returned value is the id of type
PxMc_t. This id may be checked with one of the following macros:-
PxMcIdIsValid()must be true. -
PxMcIdGet()must not be_PXIllegalObjId. -
PxMcIdError()must bePXERR_NOERRORotherwise the returned error code has to be interpreted (C).
-
-
- Best Practice
-
-
PxMcRequest_NoWaitshould only be called during initialization to ensure the availability of the memory class.
-
- SEE ALSO
- USAGE
-
#include "pxdef.h" PxMc_t mcHnd = PxMcRequest_NoWait(64, PXMcFixsized, OpoolId) if (!PxMcIdIsValid (mcHnd)) { // Report error; } else { // Handle memory class }