- 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>
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");
}