summaryrefslogtreecommitdiff
path: root/tizen/src/ecs
diff options
context:
space:
mode:
authorJinhyung Choi <jinhyung2.choi@samsung.com>2015-06-15 16:15:34 +0900
committerJinhyung Choi <jinhyung2.choi@samsung.com>2015-06-17 17:23:29 +0900
commitc678525744046ba891eed642e9f7b9e26906ea69 (patch)
tree4c5ae04c8c3be7c9e3b79b82fb2be3706e96b5b1 /tizen/src/ecs
parent91a11181b8f4761eee4c1816b904bda9083b8166 (diff)
downloadqemu-c678525744046ba891eed642e9f7b9e26906ea69.tar.gz
qemu-c678525744046ba891eed642e9f7b9e26906ea69.tar.bz2
qemu-c678525744046ba891eed642e9f7b9e26906ea69.zip
evdi: removed blocked condition by emuld connection
Change-Id: I91a72914a35a075a064c11c1656af8b1d4e67bfc Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com> (cherry picked from commit 80abb2040e5f14a3d382d532a5c78c48f613d3b9)
Diffstat (limited to 'tizen/src/ecs')
-rw-r--r--tizen/src/ecs/ecs_msg_injector.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tizen/src/ecs/ecs_msg_injector.c b/tizen/src/ecs/ecs_msg_injector.c
index 2a1196d04c..20454434c0 100644
--- a/tizen/src/ecs/ecs_msg_injector.c
+++ b/tizen/src/ecs/ecs_msg_injector.c
@@ -873,8 +873,11 @@ static void do_package(char* cat, type_action action, const char* data)
static bool injector_req_handle(char* cat, type_action action, const char* data)
{
+ int state = 0;
if (!strcmp(cat, "suspend")) {
- ecs_suspend_lock_state(ecs_get_suspend_state());
+ state = ecs_get_suspend_state();
+ LOG_INFO("send suspend lock state : %d\n", state);
+ ecs_suspend_lock_state(state);
return true;
} else if (!strcmp(cat, "boot")) {
LOG_INFO("emulator booting done.\n");