diff options
author | Lutz Helwing <lutz_helwing@mentor.com> | 2016-03-22 11:58:22 +0100 |
---|---|---|
committer | Alexander Wenzel <Alexander.AW.Wenzel@bmw.de> | 2016-04-22 10:57:15 +0200 |
commit | 80d6bbdb7ace494c9236cb2f8e3133167bf479f2 (patch) | |
tree | 3eca3e7494ce6cba6b306ea9ffeb4500cf389dd9 /include | |
parent | 568cafbfdd548f8221d43e50c044054a363a4315 (diff) | |
download | DLT-daemon-80d6bbdb7ace494c9236cb2f8e3133167bf479f2.tar.gz |
DLT_RETURN_USER_BUFFER_FULL is returned when user buffer full
A new return value DLT_RETURN_USER_BUFFER_FULL is introduced which is
returned by all dlt_user_log_write_* and dlt_log_* functions when the
data to be added to the user buffer exceeds its size (datasize >
DLT_USER_BUF_MAX_SIZE)
Signed-off-by: Lutz Helwing <lutz_helwing@mentor.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/dlt/dlt_types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dlt/dlt_types.h b/include/dlt/dlt_types.h index a0400ad..cd12e77 100644 --- a/include/dlt/dlt_types.h +++ b/include/dlt/dlt_types.h @@ -85,6 +85,7 @@ typedef unsigned int speed_t; */ typedef enum { + DLT_RETURN_USER_BUFFER_FULL = -6, DLT_RETURN_WRONG_PARAMETER = -5, DLT_RETURN_BUFFER_FULL = -4, DLT_RETURN_PIPE_FULL = -3, |