Replace aul_svc_run_service_for_uid() with async call & vsersion 4.0.5 21/149021/4
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 11 Sep 2017 08:26:22 +0000 (17:26 +0900)
committerSomin Kim <somin926.kim@samsung.com>
Mon, 11 Sep 2017 09:30:22 +0000 (18:30 +0900)
-> aul_svc_run_service_async_for_uid()

Change-Id: Ifd4250a4028a3457b7f7b109e49323d984dfe8cc
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
(cherry picked from commit 35e44abbc26bf1ebeabbb5bfe1d3fe20b63c8975)

packaging/context-job-scheduler.spec
src/server/state/ActionState.cpp

index db0e7f00689230c9ff22577516e9bc8c8a1514cd..25f3368325a00f93a31163e232ef7e8b80e079fd 100644 (file)
@@ -1,6 +1,6 @@
 Name:       context-job-scheduler
 Summary:    Unified job scheduler service server and client libraries
-Version:    4.0.4
+Version:    4.0.5
 Release:    1
 Group:      Service Framework/Context
 License:    Apache-2.0
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");
 }