diff options
author | Saya Sugiura <ssugiura@jp.adit-jv.com> | 2019-07-09 08:48:39 +0900 |
---|---|---|
committer | Saya Sugiura <39760799+ssugiura@users.noreply.github.com> | 2019-07-19 14:46:29 +0900 |
commit | 723b3d36f830dd9425a7affdc5f64a8c2dcdcd45 (patch) | |
tree | 29fac7e70f9ab440fdbb3cd378f2262ad45f8859 /src/lib | |
parent | c0f78f70edf2392545646dbde5c476556d926262 (diff) | |
download | DLT-daemon-723b3d36f830dd9425a7affdc5f64a8c2dcdcd45.tar.gz |
doxygen: Align variable for apid and ctid
The variables used for application id and context id are aligned with
"apid" and "ctid".
Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/dlt_user.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/lib/dlt_user.c b/src/lib/dlt_user.c index bac2758..d603783 100644 --- a/src/lib/dlt_user.c +++ b/src/lib/dlt_user.c @@ -146,7 +146,7 @@ static DltReturnValue dlt_user_log_send_register_application(void); static DltReturnValue dlt_user_log_send_unregister_application(void); static DltReturnValue dlt_user_log_send_register_context(DltContextData *log); static DltReturnValue dlt_user_log_send_unregister_context(DltContextData *log); -static DltReturnValue dlt_send_app_ll_ts_limit(const char *appid, +static DltReturnValue dlt_send_app_ll_ts_limit(const char *apid, DltLogLevelType loglevel, DltTraceStatusType tracestatus); static DltReturnValue dlt_user_log_send_log_mode(DltUserLogMode mode); @@ -930,7 +930,7 @@ DltReturnValue dlt_check_library_version(const char *user_major_version, const c return dlt_user_check_library_version(user_major_version, user_minor_version); } -DltReturnValue dlt_register_app(const char *appid, const char *description) +DltReturnValue dlt_register_app(const char *apid, const char *description) { DltReturnValue ret = DLT_RETURN_OK; @@ -945,38 +945,38 @@ DltReturnValue dlt_register_app(const char *appid, const char *description) } } - if ((appid == NULL) || (appid[0] == '\0')) + if ((apid == NULL) || (apid[0] == '\0')) return DLT_RETURN_WRONG_PARAMETER; /* check if application already registered */ /* if yes do not register again */ - if (appid[1] == 0) { - if (appid[0] == dlt_user.appID[0]) + if (apid[1] == 0) { + if (apid[0] == dlt_user.appID[0]) return DLT_RETURN_OK; } - else if (appid[2] == 0) + else if (apid[2] == 0) { - if ((appid[0] == dlt_user.appID[0]) && - (appid[1] == dlt_user.appID[1])) + if ((apid[0] == dlt_user.appID[0]) && + (apid[1] == dlt_user.appID[1])) return DLT_RETURN_OK; } - else if (appid[3] == 0) + else if (apid[3] == 0) { - if ((appid[0] == dlt_user.appID[0]) && - (appid[1] == dlt_user.appID[1]) && - (appid[2] == dlt_user.appID[2])) + if ((apid[0] == dlt_user.appID[0]) && + (apid[1] == dlt_user.appID[1]) && + (apid[2] == dlt_user.appID[2])) return DLT_RETURN_OK; } - else if ((appid[0] == dlt_user.appID[0]) && - (appid[1] == dlt_user.appID[1]) && - (appid[2] == dlt_user.appID[2]) && - (appid[3] == dlt_user.appID[3])) + else if ((apid[0] == dlt_user.appID[0]) && + (apid[1] == dlt_user.appID[1]) && + (apid[2] == dlt_user.appID[2]) && + (apid[3] == dlt_user.appID[3])) return DLT_RETURN_OK; DLT_SEM_LOCK(); /* Store locally application id and application description */ - dlt_set_id(dlt_user.appID, appid); + dlt_set_id(dlt_user.appID, apid); if (dlt_user.application_description != NULL) free(dlt_user.application_description); @@ -3896,7 +3896,7 @@ DltReturnValue dlt_user_log_send_unregister_context(DltContextData *log) return DLT_RETURN_OK; } -DltReturnValue dlt_send_app_ll_ts_limit(const char *appid, DltLogLevelType loglevel, DltTraceStatusType tracestatus) +DltReturnValue dlt_send_app_ll_ts_limit(const char *apid, DltLogLevelType loglevel, DltTraceStatusType tracestatus) { DltUserHeader userheader; DltUserControlMsgAppLogLevelTraceStatus usercontext; @@ -3912,7 +3912,7 @@ DltReturnValue dlt_send_app_ll_ts_limit(const char *appid, DltLogLevelType logle return DLT_RETURN_ERROR; } - if ((appid == NULL) || (appid[0] == '\0')) + if ((apid == NULL) || (apid[0] == '\0')) return DLT_RETURN_ERROR; /* set userheader */ @@ -3920,7 +3920,7 @@ DltReturnValue dlt_send_app_ll_ts_limit(const char *appid, DltLogLevelType logle return DLT_RETURN_ERROR; /* set usercontext */ - dlt_set_id(usercontext.apid, appid); /* application id */ + dlt_set_id(usercontext.apid, apid); /* application id */ usercontext.log_level = loglevel; usercontext.trace_status = tracestatus; |