Everything

rcv_dtq

Outline
Receive from data queue (waiting forever).
C format
 ER      rcv_dtq (ID dtqid, VP_INT *p_data);
Parameter(s)
I/O
Parameter
Description
I
 ID      dtqid;
ID number of the data queue.
O
 VP_INT  *p_data;
Data element received from the data queue.

Explanation
This service call processes as follows according to the situation of the data queue specified by the parameter dtqid.
- There is a data in the data queue.
This service call takes out the oldest data from the data queue and stores the data to the area specified by p_data.
When there is a task in the transmission wait queue, this service call stores the data sent by the task in the top of the transmission wait queue and moves it from the WAITING state (data transmission wait state) to the READY state.
- There is no data in the data queue and there is a task in the transmission wait queue.
This service call stores the data specified by the task in the top of the transmission wait queue to the area specified by p_data. As a result, the task is unlinked from the transmission wait queue and moves from the WAITING state (data transmission wait state) to the READY state, or from the WAITING-SUSPENDED state to the SUSPENDED state.
Note, this situation is caused only when the capacity of the data queue is 0.
- There is no data in the data queue and there is no task in the transmission wait queue.
This service call queues the invoking task to the reception wait queue of the target data queue and moves it from the RUNNING state to the WAITING state (data reception wait state).
The receiving WAITING state for a data queue is cancelled in the following cases.
Receiving WAITING State for a Data Queue Cancel Operation
Return Value
Data was sent to the data queue area as a result of issuing snd_dtq.
E_OK
Data was sent to the data queue area as a result of issuing psnd_dtq.
E_OK
Data was sent to the data queue area as a result of issuing ipsnd_dtq.
E_OK
Data was sent to the data queue area as a result of issuing tsnd_dtq.
E_OK
Data was sent to the data queue area as a result of issuing fsnd_dtq.
E_OK
Data was sent to the data queue area as a result of issuing ifsnd_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
Forced release from waiting (accept del_dtq while waiting).
E_DLT

Note Invoking tasks are queued to the reception wait queue of the target data queue in the order of the data reception request.
Return value
Macro
Value
Description
E_OK
0
Normal completion.
E_PAR
-17
Parameter error.
- p_data == NULL
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.
- The operand-write access to the area indicated by p_data has not been permitted to the 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_DLT
-51
Waiting object deleted.
- Accept del_dtq while waiting.