-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trace-load: improve trace load lookup #688
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,7 +162,10 @@ 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 */ | ||
bool predefined; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Could you explain the purpose of removing the comment of the bool predefined variable? If it was removed intentionally, kindly please consider reverting this line if it is not necessary." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was not used as far I could tell, but maybe missed something? |
||
#ifdef DLT_TRACE_LOAD_CTRL_ENABLE | ||
DltTraceLoadSettings* trace_load_settings; /**< trace load setting for the context */ | ||
#endif | ||
} DltDaemonContext; | ||
|
||
/* | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those lines of code should be warped in 1 function like "dlt_traceload_free"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do, once I'm back in office in December :)