This patch removes updating the app status information from the timeout handler.
Even if the launched application is running normally, the application is
terminated by AMD. This patch is to prevent app termination.
Change-Id: I543279ba816f97d4a95697929e9072d787410310
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
{
request_h req = (request_h)data;
struct pending_item *item;
- app_status_h app_status;
if (req == NULL)
return FALSE;
_request_send_result(req, -EAGAIN);
req->timer = 0;
- if (req->critical) {
- _E("App is not responding");
- app_status = _app_status_find(req->t_pid);
- if (app_status)
- _app_status_update_status(app_status, STATUS_DYING, false, true);
- }
+ if (req->critical)
+ _E("App(%d) is not responding", req->t_pid);
__free_request(req);