summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_common.h
diff options
context:
space:
mode:
authorAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2011-08-10 14:21:45 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2011-08-10 14:21:45 +0200
commitf204d5669c41fa3884f6070bd89554f8c1aa3712 (patch)
tree27839b31bae4ee20b82e6fb3e8cef1f29a2fab1b /src/daemon/dlt_daemon_common.h
parent7554585a80ca2a8ebdcd5d1f1693ffe8e39b571d (diff)
parent885a1474729164f3f049a38c27c6f8c148fee95f (diff)
downloadDLT-daemon-f204d5669c41fa3884f6070bd89554f8c1aa3712.tar.gz
Merge branch 'master' into develope
Diffstat (limited to 'src/daemon/dlt_daemon_common.h')
-rwxr-xr-xsrc/daemon/dlt_daemon_common.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/daemon/dlt_daemon_common.h b/src/daemon/dlt_daemon_common.h
index d861a9e..39907e8 100755
--- a/src/daemon/dlt_daemon_common.h
+++ b/src/daemon/dlt_daemon_common.h
@@ -153,16 +153,19 @@ typedef struct
int sendserialheader; /**< 1: send serial header; 0 don't send serial header */
int timingpackets; /**< 1: send continous timing packets; 0 don't send continous timing packets */
DltRingBuffer client_ringbuffer; /**< Ring-buffer for storing received logs while no client connection is available */
+ char runtime_application_cfg[256]; /**< Path and filename of persistent application configuration */
+ char runtime_context_cfg[256]; /**< Path and filename of persistent context configuration */
} DltDaemon;
/**
* Initialise the dlt daemon structure
* This function must be called before using further dlt daemon structure
* @param daemon pointer to dlt daemon structure
+ * @param runtime_directory Directory of persistent configuration
* @param verbose if set to true verbose information is printed out.
* @return negative value if there was an error
*/
-int dlt_daemon_init(DltDaemon *daemon,int verbose);
+int dlt_daemon_init(DltDaemon *daemon,const char *runtime_directory,int verbose);
/**
* De-Initialise the dlt daemon structure
* @param daemon pointer to dlt daemon structure