<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/DLT-daemon.git/src/examples, branch dynamic_buffer_alloc</title>
<subtitle>github.com: GENIVI/dlt-daemon.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/'/>
<entry>
<title>Dynamic allocation of msg buffer</title>
<updated>2018-12-06T11:28:13+00:00</updated>
<author>
<name>ManikandanC</name>
<email>Manikandan.Chockalingam@in.bosch.com</email>
</author>
<published>2017-05-22T05:27:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=23652a7cbfb4ea24870f4e2f03cf16b9ece4c1ce'/>
<id>23652a7cbfb4ea24870f4e2f03cf16b9ece4c1ce</id>
<content type='text'>
It is possible to change the default buffer size for log message creation via
environment variable:

export DLT_LOG_MSG_BUF_LEN=&lt;value&gt;

Instead of using a static buffer with size of 1390 bytes, the buffer is
allocated dynamically with the specified value.The max size is restricted to approx 65k.

Signed-off-by: Christoph Lipka &lt;clipka@de.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is possible to change the default buffer size for log message creation via
environment variable:

export DLT_LOG_MSG_BUF_LEN=&lt;value&gt;

Instead of using a static buffer with size of 1390 bytes, the buffer is
allocated dynamically with the specified value.The max size is restricted to approx 65k.

Signed-off-by: Christoph Lipka &lt;clipka@de.adit-jv.com&gt;
Signed-off-by: ManikandanC &lt;Manikandan.Chockalingam@in.bosch.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed dlt-example-non-verbose-1.xml</title>
<updated>2015-12-04T14:29:33+00:00</updated>
<author>
<name>Sven Hassler</name>
<email>sven_hassler@mentor.com</email>
</author>
<published>2015-12-04T13:22:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=280afb856b74e6089cdd2aa1af7f50c628583475'/>
<id>280afb856b74e6089cdd2aa1af7f50c628583475</id>
<content type='text'>
Removed -e from shebang line of start_system_logger_test.sh

Signed-off-by: Lutz Helwing &lt;lutz_helwing@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removed -e from shebang line of start_system_logger_test.sh

Signed-off-by: Lutz Helwing &lt;lutz_helwing@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Purged all warnings for -Wall -Wextra</title>
<updated>2015-10-28T10:37:32+00:00</updated>
<author>
<name>Lutz Helwing</name>
<email>lutz_helwing@mentor.com</email>
</author>
<published>2015-10-09T12:34:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=fb99b7875dfe64a4073aa14f33c551098632847c'/>
<id>fb99b7875dfe64a4073aa14f33c551098632847c</id>
<content type='text'>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>DLT daemon improvement - dlt_init()-check</title>
<updated>2015-10-07T08:40:33+00:00</updated>
<author>
<name>Lutz Helwing</name>
<email>lutz_helwing@mentor.com</email>
</author>
<published>2015-07-15T12:14:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=1236195e9b93aeb6bfa625956fa027f96003756d'/>
<id>1236195e9b93aeb6bfa625956fa027f96003756d</id>
<content type='text'>
DLT daemon improvement - parameter value range check

Adapt unit tests to check for enum return values

Changed C version to gnu99 and C++ version to gnu++0c

Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DLT daemon improvement - parameter value range check

Adapt unit tests to check for enum return values

Changed C version to gnu99 and C++ version to gnu++0c

Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Make timeout on exit configurable</title>
<updated>2015-10-07T08:38:19+00:00</updated>
<author>
<name>Stefan Vacek</name>
<email>stefan.vacek@intel.com</email>
</author>
<published>2015-08-31T07:29:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=0d330db31f5df337cbb5780a0f6621a7b2cb6396'/>
<id>0d330db31f5df337cbb5780a0f6621a7b2cb6396</id>
<content type='text'>
 - make timeout in at_exit handler configurable (was hardcoded to 10s), new api:
   int dlt_set_resend_timeout_atexit(uint32_t timeout_in_milliseconds);
 - add option -t to dlt-adaptor-stdin to set timeout in at_exit_handler
 - add option -t to dlt-example-user to set timeout in at_exit_handler

Signed-off-by: Stefan Vacek &lt;stefan.vacek@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - make timeout in at_exit handler configurable (was hardcoded to 10s), new api:
   int dlt_set_resend_timeout_atexit(uint32_t timeout_in_milliseconds);
 - add option -t to dlt-adaptor-stdin to set timeout in at_exit_handler
 - add option -t to dlt-example-user to set timeout in at_exit_handler

Signed-off-by: Stefan Vacek &lt;stefan.vacek@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed whitespace and formatting of new code Fixed licence headers</title>
<updated>2015-10-07T08:37:19+00:00</updated>
<author>
<name>Lutz Helwing</name>
<email>lutz_helwing@mentor.com</email>
</author>
<published>2015-09-22T08:49:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=4c8d43322e89b87288fb5ba12e523237e620481b'/>
<id>4c8d43322e89b87288fb5ba12e523237e620481b</id>
<content type='text'>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add env-var to set initial log-levels</title>
<updated>2015-10-07T08:35:41+00:00</updated>
<author>
<name>Stefan Vacek</name>
<email>stefan.vacek@intel.com</email>
</author>
<published>2015-08-26T15:28:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=c3b53f8805236cb7c72eb62ef04866f34de33103'/>
<id>c3b53f8805236cb7c72eb62ef04866f34de33103</id>
<content type='text'>
name of environment variable: DLT_INITIAL_LOG_LEVEL

Syntax:
   &lt;apid1&gt;:&lt;ctid1&gt;:&lt;loglevel1&gt;;&lt;apid2&gt;:&lt;ctid2&gt;:&lt;loglevel2&gt;;...
   apid: application id (up to 4 chars), if empty all applications will match
   ctid: context id (up to 4 chars), if empty all contexts will match
   loglevel: either -1..6 or a symbolic name (default, off, fatal, error,
                                              warning, info, debug, verbose)

Examples:
DLT_INITIAL_LOG_LEVEL=TEST:LOG:0
-&gt; turn off logging for appid TEST and contextid LOG

DLT_INITIAL_LOG_LEVEL=:LOG:warn
-&gt; for contexts with name "LOG" set log-level to warning (3)

DLT_INITIAL_LOG_LEVEL=::VERBOSE
-&gt; set log-level of all contexts to VERBOSE

DLT_INITIAL_LOG_LEVEL=::VERBOSE;TEST:LOG:3
-&gt; set log-level of all contexts to VERBOSE except TEST:LOG, set this to WARNING

dlt-example-user: add option -l to specify log-level to be used when sending messages
Signed-off-by: Stefan Vacek &lt;stefan.vacek@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
name of environment variable: DLT_INITIAL_LOG_LEVEL

Syntax:
   &lt;apid1&gt;:&lt;ctid1&gt;:&lt;loglevel1&gt;;&lt;apid2&gt;:&lt;ctid2&gt;:&lt;loglevel2&gt;;...
   apid: application id (up to 4 chars), if empty all applications will match
   ctid: context id (up to 4 chars), if empty all contexts will match
   loglevel: either -1..6 or a symbolic name (default, off, fatal, error,
                                              warning, info, debug, verbose)

Examples:
DLT_INITIAL_LOG_LEVEL=TEST:LOG:0
-&gt; turn off logging for appid TEST and contextid LOG

DLT_INITIAL_LOG_LEVEL=:LOG:warn
-&gt; for contexts with name "LOG" set log-level to warning (3)

DLT_INITIAL_LOG_LEVEL=::VERBOSE
-&gt; set log-level of all contexts to VERBOSE

DLT_INITIAL_LOG_LEVEL=::VERBOSE;TEST:LOG:3
-&gt; set log-level of all contexts to VERBOSE except TEST:LOG, set this to WARNING

dlt-example-user: add option -l to specify log-level to be used when sending messages
Signed-off-by: Stefan Vacek &lt;stefan.vacek@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup master</title>
<updated>2015-10-07T08:34:54+00:00</updated>
<author>
<name>Stefan Vacek</name>
<email>stefan.vacek@intel.com</email>
</author>
<published>2015-08-26T11:38:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=c7d765971913568a7d701bfb8a8444bc882ccbf1'/>
<id>c7d765971913568a7d701bfb8a8444bc882ccbf1</id>
<content type='text'>
 - remove compiler warnings
 - fix file permissions

Signed-off-by: Stefan Vacek &lt;stefan.vacek@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - remove compiler warnings
 - fix file permissions

Signed-off-by: Stefan Vacek &lt;stefan.vacek@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed all trailing whitespaces</title>
<updated>2015-07-21T10:48:27+00:00</updated>
<author>
<name>Lutz Helwing</name>
<email>lutz_helwing@mentor.com</email>
</author>
<published>2015-07-13T14:52:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=98e932adee2a76bda3c2630f348196216549a45a'/>
<id>98e932adee2a76bda3c2630f348196216549a45a</id>
<content type='text'>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed license headers and copyright doxygen comments</title>
<updated>2015-06-17T06:50:44+00:00</updated>
<author>
<name>Lutz Helwing</name>
<email>lutz_helwing@mentor.com</email>
</author>
<published>2015-05-29T14:45:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/DLT-daemon.git/commit/?id=53e0de1b51821e1ec75766b4ff44c711b4215922'/>
<id>53e0de1b51821e1ec75766b4ff44c711b4215922</id>
<content type='text'>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Alexander Wenzel &lt;Alexander.AW.Wenzel@bmw.de&gt;
</pre>
</div>
</content>
</entry>
</feed>
