diff options
Diffstat (limited to 'src/_eina.c')
-rw-r--r-- | src/_eina.c | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/src/_eina.c b/src/_eina.c index 6a0ed22..eeb0e07 100644 --- a/src/_eina.c +++ b/src/_eina.c @@ -1,18 +1,20 @@ - /* - * Copyright 2012 Samsung Electronics Co., Ltd - * - * Licensed under the Flora License, Version 1.0 (the License); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.tizenopensource.org/license - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an AS IS BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +/* + * Copyright 2012 Samsung Electronics Co., Ltd + * + * Licensed under the Flora License, Version 1.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.tizenopensource.org/license + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + #include <stdlib.h> @@ -166,6 +168,8 @@ int taskmanager_get_history_app_info(void *data) || strlen(rec_result.pkg_name) < 1) { continue; } + + _D("%s\n", rec_result.pkg_name); ret = ail_package_get_appinfo(rec_result.pkg_name, &handle); if (ret != AIL_ERROR_OK) { _D("Failed to get appinfo(%d)\n", ret); @@ -207,6 +211,7 @@ int taskmanager_get_history_app_info(void *data) } snprintf(buf, sizeof(buf), "%s", valc); info->icn_path = strdup(buf); + _D("%s\n", info->icn_path); info->ad = ad; info->pid = 0; |