From 341831da4da448392d62e48f1a4f419a18e3dca5 Mon Sep 17 00:00:00 2001 From: Bui Nguyen Quoc Thanh Date: Wed, 13 Mar 2019 15:41:44 +0700 Subject: daemon: Don't remove unregistered context If a context is defined and loaded from runtime context config file, that context won't be deleted/removed from dlt-daemon database until its parent application is unregistered. Signed-off-by: Bui Nguyen Quoc Thanh --- src/daemon/dlt_daemon_common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/daemon/dlt_daemon_common.h') diff --git a/src/daemon/dlt_daemon_common.h b/src/daemon/dlt_daemon_common.h index be29bca..507098a 100644 --- a/src/daemon/dlt_daemon_common.h +++ b/src/daemon/dlt_daemon_common.h @@ -79,6 +79,7 @@ # include # include +# include # include "dlt_common.h" # include "dlt_user.h" # include "dlt_offline_logstorage.h" @@ -142,6 +143,7 @@ typedef struct int user_handle; /**< connection handle for connection to user application */ char *context_description; /**< context description */ int8_t storage_log_level; /**< log level set for offline logstorage */ + bool predefined; /**< set to true if this context is predefined by runtime configuration file */ } DltDaemonContext; /* -- cgit v1.2.1