summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSaya Sugiura <ssugiura@jp.adit-jv.com>2020-02-11 10:24:39 +0900
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2020-07-06 10:04:07 +0900
commit404bc3934bcb0bbb5671a84ecb45c95069bc1ab3 (patch)
treefb419eea29e1d8dc99dfdf7f5e6762aaf1934e01 /doc
parent3dca373d843213f03c95df56e36b16d6b83fd58f (diff)
downloadDLT-daemon-404bc3934bcb0bbb5671a84ecb45c95069bc1ab3.tar.gz
network trace: Add mqueue verification
There is some OS (e.g. Android) which doesn't support message queue. Since network trace uses it as IPC, we need to disable it if following calls are not available: mq_open, mq_close, mq_unlink, mq_send, mq_receive Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com> Signed-off-by: KHANH LUONG HONG DUY <khanh.luonghongduy@vn.bosch.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/dlt_extended_network_trace.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/dlt_extended_network_trace.md b/doc/dlt_extended_network_trace.md
index bb2f09b..f46ce7d 100644
--- a/doc/dlt_extended_network_trace.md
+++ b/doc/dlt_extended_network_trace.md
@@ -5,7 +5,13 @@ Back to [README.md](../README.md)
## Introduction
The extended network trace allows the user to send or truncate network trace
-messages that are larger than the normal maximum size of a DLT message.
+messages that are larger than the normal maximum size of a DLT message. This
+interface will be enabled if following calls are supported on the target:
+- mq\_open
+- mq\_close
+- mq\_unlink
+- mq\_send
+- mq\_receive
## Protocol