Everything

tsnd_dtq

Outline
Send to data queue (with time-out).
C format
 ER      tsnd_dtq (ID dtqid, VP_INT data, TMO tmout);
Parameter(s)
I/O
Parameter
Description
I
 ID      dtqid;
ID number of the data queue.
I
 VP_INT  data;
Data element to be sent to the data queue.
I
 TMO     tmout;
Specified time-out (in millisecond).
TMO_FEVR: Waiting forever.
TMO_POL: Polling.
Value: Specified time-out.

Explanation
This service call processes as follows according to the situation of the data queue specified by the parameter dtqid.
- There is a task in the reception wait queue.
This service call transfers the data specified by parameter data to the task in the top of the reception wait queue. As a result, the task is unlinked from the reception wait queue and moves from the WAITING state (data reception wait state) to the READY state, or from the WAITING-SUSPENDED state to the SUSPENDED state.
- There is no task neither in the reception wait queue and transmission wait queue and there is available space in the data queue.
This service call stores the data specified by parameter data to the data queue.
- There is no task neither in the reception wait queue and transmission wait queue and there is no available space in the data queue, or there is a task in the transmission wait queue.
This service call queues the invoking task to the transmission wait queue of the target data queue and moves it from the RUNNING state to the WAITING state with time (data transmission wait state).
The sending WAITING state for a data queue is cancelled in the following cases.
Sending WAITING State for a Data Queue Cancel Operation
Return Value
Available space was secured in the data queue area as a result of issuing rcv_dtq.
E_OK
Available space was secured in the data queue area as a result of issuing prcv_dtq.
E_OK
Available space was secured in the data queue area as a result of issuing iprcv_dtq.
E_OK
Available space was secured in the data queue area as a result of issuing trcv_dtq.
E_OK
Forced release from waiting (accept rel_wai while waiting).
E_RLWAI
Forced release from waiting (accept irel_wai while waiting).
E_RLWAI
The data queue is reset as a result of issuing vrst_dtq.
EV_RST
The time specified by tmout has elapsed.
E_TMOUT
Forced release from waiting (accept del_dtq while waiting).
E_DLT

Note 1 Data is written to the data queue area of the target data queue in the order of the data transmission request.
Note 2 Invoking tasks are queued to the transmission wait queue of the target data queue in the order specified at creating the data queue (FIFO order or current priority order).
Note 3 TMO_FEVR is specified for wait time tmout, processing equivalent to snd_dtq will be executed. When TMO_POL is specified, processing equivalent to psnd_dtq will be executed.
Return value
Macro
Value
Description
E_OK
0
Normal completion.
E_PAR
-17
Parameter error.
- tmout < -1
- tmout > (0x7FFFFFFF - TIC_NUME) / TIC_DENO
E_ID
-18
Invalid ID number.
- dtqid < 0
- dtqid > VTMAX_DTQ
E_CTX
-25
Context error.
- This service call was issued from a non-task.
- This service call was issued in the CPU locked state.
- This service call was issued in the dispatching disabled state.
- This service call was issued in the status "PSW.IPL > kernel interrupt mask level".
E_MACV
-26
Memory access violation.
- Stack pointer points out of user stack for invoking task.
E_NOEXS
-42
Non-existent object.
- The data queue specified by dtqid does not exist.
E_RLWAI
-49
Forced release from the WAITING state.
- Accept rel_wai/irel_wai while waiting.
E_TMOUT
-50
Polling failure or specified time has elapsed.
E_DLT
-51
Waiting object deleted.
- Accept del_dtq while waiting.
EV_RST
-127
Released from WAITING state by the object reset (vrst_dtq)