Change using launch API 66/148966/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 11 Sep 2017 08:26:22 +0000 (17:26 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 11 Sep 2017 08:26:22 +0000 (17:26 +0900)
- Uses aul_svc_run_service_async_for_uid() instead of
aul_svc_run_service_for_uid()

Change-Id: Ifd4250a4028a3457b7f7b109e49323d984dfe8cc
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/server/state/ActionState.cpp

index 88e9e2d927ff9135ad3412380c895863885e2fba..a89cba78d4f3efd43f9f278f07d5f252bd11c98a 100644 (file)
@@ -115,7 +115,7 @@ void ActionState::__sendAppControl()
        bundle* bn = static_cast<JobAppControl*>(getJobInfo()->getAction())->getAppControl();
        IF_FAIL_VOID_TAG(bn, _E, "App-control not found");
 
-       int pid = aul_svc_run_service_for_uid(bn, 0, __aul_svc_result_cb, NULL, getUid());
+       int pid = aul_svc_run_service_async_for_uid(bn, 0, __aul_svc_result_cb, NULL, getUid());
        IF_FAIL_VOID_TAG(pid >= 0, _E, "Sending app-control failed");
 }