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 eef828038efd0b84d3d1a2e61366942e2e2d9a81..df7c0b98a42b966017b9f14f91db126cdf4a7f75 100644 (file)
@@ -2203,11 +2203,6 @@ int aul_reload_appinfo(void);
  */
 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.
  */
index eb6a669740fff3546eab5dd92e01cb4280940bb1..a59985b66aa27b7c46327a2a3ffa453832211502 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;