PxDelayResched_Pxhnd()
Schedule a delay job (handler service).
- APPLIES TO
-
8.2.0
- SYNOPSIS
-
PxError_t PxDelayResched_Pxhnd(PxDelay_t delay, PxTicks_t ticks, void PXFun_q (*handler)(PxArg_t), PxArg_t arg);
- ARGUMENTS
|
|
|
|
|
|
|
- RETURN VALUES
-
-
PXERR_NOERROR
if successful, or a PXROS-HR error code otherwise.
-
- ERROR CODES
-
PXERR_DELAY_ILLDELAY
delay
is not a valid delay handlerPXERR_REQUEST_ILLEGAL
The caller task is not the requester of the
delay
objectPXERR_TASK_ILLCALL
Task service called by the handler
- DESCRIPTION
-
PxDelayResched_Pxhnd cancels a potential delay job associated with
delay
. Ifticks
is not zero, PXROS schedules activation of the handler call handler(arg) after ticks PXROS ticks and associates this delay job withdelay
object. The PxDelayResched_Pxhnd can only be called from handler level, otherwise PXERR_PXHND_ILLCALL error is returned.