Commit bfd6d78c authored by Adam Wujek's avatar Adam Wujek 💬

tests:fw:sim-verif: apply changes needed by re-design MQ interface

Apply changes needed by a commit:
f240f4ce re-design MQ interface
Signed-off-by: Adam Wujek's avatarAdam Wujek <adam.wujek@cern.ch>
parent 19590c06
......@@ -62,7 +62,7 @@ test_hmq(void)
p[i] = msg[i];
hdr = mq_map_out_header(TRTL_HMQ, 0);
*hdr = (sizeof (msg) + 3) / 4;
mq_send(TRTL_HMQ, 0, 0);
mq_send(TRTL_HMQ, 0);
// Wait for answer
while((mq_poll() & 1) == 0)
......@@ -102,7 +102,7 @@ test_rmq(void)
p[i] = msg[i];
hdr = mq_map_out_header(TRTL_RMQ, 0);
*hdr = (sizeof (msg) + 3) / 4;
mq_send(TRTL_RMQ, 0, 0);
mq_send(TRTL_RMQ, 0);
// Wait for answer
while((mq_poll() & (1 << 16)) == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment