summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSaya Sugiura <ssugiura@jp.adit-jv.com>2021-07-21 08:35:47 +0000
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2021-10-05 11:19:26 +0900
commit79737026ed7b5ddae4c375b564fd5f27f573b025 (patch)
tree933265417c12d61078a98c02032ce01c6a5b2830 /doc
parent7d222bed9dff4713d6fb261b56910f216463597b (diff)
downloadDLT-daemon-79737026ed7b5ddae4c375b564fd5f27f573b025.tar.gz
daemon: Enable to use FIFO on QNX
It depends on OSes if maximum size of pipe can be configured per process or not. For example, on QNX it can be only set from pipe resource manager. Also flags used to set the value are only supported on Linux. Now DaemonFIFOSize option in dlt.conf is only relevant for Linux. Also -f option is added to build scripts to enable FIFO as IPC. Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/dlt.conf.5.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/dlt.conf.5.md b/doc/dlt.conf.5.md
index 8109c27..aeb2dfc 100644
--- a/doc/dlt.conf.5.md
+++ b/doc/dlt.conf.5.md
@@ -103,6 +103,13 @@ The step size the Ringbuffer is increased, used for storing temporary DLT messag
Default: 500000
+## Daemon FIFOSize
+
+The size of Daemon FIFO (MinSize: depend on pagesize of system, MaxSize: please check `/proc/sys/fs/pipe-max-size`)
+This is only supported for Linux.
+
+ Default: 65536
+
## ContextLogLevel
Initial log-level that is sent when an application registers. DLT_LOG_OFF = 0, DLT_LOG_FATAL = 1, DLT_LOG_ERROR = 2, DLT_LOG_WARN = 3, DLT_LOG_INFO = 4, DLT_LOG_DEBUG = 5, DLT_LOG_VERBOSE = 6