Remove unused API 70/280070/1
authorHwankyu Jhun <h.jhun@samsung.com>
Tue, 23 Aug 2022 06:44:07 +0000 (06:44 +0000)
committerHwankyu Jhun <h.jhun@samsung.com>
Tue, 23 Aug 2022 06:44:07 +0000 (06:44 +0000)
The aul_running_list_update() function is removed. It's not used.

Change-Id: I00c2ef15e3b9028c3bf115b416a6427001bb9557
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
include/aul.h
src/status.c

index eef8280..df7c0b9 100644 (file)
@@ -2206,11 +2206,6 @@ int aul_status_update(int status);
 /*
  * This API is only for Appfw internally.
  */
-int aul_running_list_update(char *appid, char *app_path, char *pid);
-
-/*
- * This API is only for Appfw internally.
- */
 int aul_app_group_get_window(int pid);
 
 /*
index eb6a669..a59985b 100644 (file)
@@ -210,25 +210,6 @@ API int aul_invoke_status_local_cb(int status)
        return 0;
 }
 
-API int aul_running_list_update(char *appid, char *app_path, char *pid)
-{
-       int ret;
-       bundle *kb;
-
-       kb = bundle_create();
-
-       bundle_add(kb, AUL_K_APPID, appid);
-       bundle_add(kb, AUL_K_EXEC, app_path);
-       bundle_add(kb, AUL_K_PID, pid);
-
-       ret = app_send_cmd(AUL_UTIL_PID, APP_RUNNING_LIST_UPDATE, kb);
-
-       if (kb != NULL)
-                       bundle_free(kb);
-
-       return ret;
-}
-
 API int aul_set_process_group(int owner_pid, int child_pid)
 {
        int ret = -1;