static gboolean unset_app_context_event_cb(gpointer user_data)
{
- dlog_print(DLOG_INFO, "NativeTCT", "START");
+ dlog_print(DLOG_INFO, "NativeTCT", "%s(%d) START",
+ __FUNCTION__, __LINE__);
app_manager_unset_app_context_event_cb();
normal_exit(0);
- dlog_print(DLOG_INFO, "NativeTCT", "END");
+ dlog_print(DLOG_INFO, "NativeTCT", "%s(%d) END",
+ __FUNCTION__, __LINE__);
return FALSE;
}
char *str = (char *)user_data;
bool touched = false;
- dlog_print(DLOG_INFO, "NativeTCT", "START");
+ dlog_print(DLOG_INFO, "NativeTCT", "%s(%d) START",
+ __FUNCTION__, __LINE__);
if (str == NULL) {
normal_exit(1);
return;
if (!strcmp(str, "launched"))
touched = true;
} else if (event == APP_CONTEXT_EVENT_TERMINATED) {
- if (!strcmp(str, "terminate"))
+ if (!strcmp(str, "terminated"))
touched = true;
}
g_idle_add(unset_app_context_event_cb, NULL);
}
- dlog_print(DLOG_INFO, "NativeTCT", "END");
+ dlog_print(DLOG_INFO, "NativeTCT", "%s(%d) END",
+ __FUNCTION__, __LINE__);
}
/**