284
K
A
DAK
AMX 86 Procedures
ajresum ajresumPurpose Resume a Suspended Task
Resume a task known to be suspended as a result of an ajsusp call.
Used by n Task n IS P n Timer Procedure o Restart Procedure n Exit Procedure
Setup AMXID taskid;
int status;
.
.
status = ajresum(taskid);
AX DX
Where taskid is the task id of the task to be resumed.
Results Interrupts are disabled and then restored to their state at the time of the
call.
Status is returned.
AEROK = Call successful
AERNST = Invalid task id
An immediate task switch will occur if the task being resumed is of higher
priority than the current task.
See Also ajsusp