Request to abort the processing of a previous request primitive.
Mandatory for all signaling processes.
The signaling interface library (libsl.a).
typedef struct { SL_ID id; int iseq_no; pid_t pidCHP; SL_PRIMITIVE_TYPE Command; SL_REQUEST_PARM_ST Parms; } SL_REQUEST_ST; ... typedef union { ... struct _abort_request_st { size_t sizetLength; int iCommandNo; } abort_request_st; ... } SL_REQUEST_PARM_ST;
The SL_ABORT_REQ primitive is sent by the signaling interface to the signaling process, on request from the channel process or the system manager. The SL_ABORT_REQ primitive is generated internally by the signaling interface in response to the sl_abort_request() subroutine. The SL_ABORT_REQ primitive cannot be sent directly by any process. The request can be received by any signaling process, and it indicates that the client process (channel process, custom server, or system manager) wants to abort a previous request. The request being aborted is identified by its sequence number. The usual reason why a primitive is aborted is that the signaling process has not responded to the original request quickly enough. For example, when a call setup has taken longer than the state table is prepared to wait.
There is no corresponding confirm primitive, to abort the processing of a primitive, the signaling process should send a confirm primitive corresponding to the original request, with the Parms.ReplyCode field set to SL_REPLY_ABORTED.
None.