diff options
author | Junghoon Park <jh9216.park@samsung.com> | 2017-07-19 02:59:40 +0000 |
---|---|---|
committer | HwanKyu Jhun <h.jhun@samsung.com> | 2017-09-21 11:57:42 +0000 |
commit | 9bef28b880ecb09897d16020c1aca09f103d13c7 (patch) | |
tree | a0a1d1b4906e65f8562569e0715999e83b55f93c | |
parent | 9e6cc1db1a066337daec764680c89068eb7179b0 (diff) | |
download | aul-1-9bef28b880ecb09897d16020c1aca09f103d13c7.tar.gz aul-1-9bef28b880ecb09897d16020c1aca09f103d13c7.tar.bz2 aul-1-9bef28b880ecb09897d16020c1aca09f103d13c7.zip |
Revert "Set the timeout about sending dbus message"
This reverts commit f89881791650cb49f4bcc68717f9c3f32420e597.
Change-Id: I211ec0e7b9842689e7449de5585231b24ab125d0
-rw-r--r-- | src/aul_window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aul_window.c b/src/aul_window.c index 8cfff69a..068d3d0a 100644 --- a/src/aul_window.c +++ b/src/aul_window.c @@ -85,7 +85,7 @@ API int aul_window_stack_get(aul_window_stack_h *handle) } reply = g_dbus_connection_send_message_with_reply_sync(system_conn, msg, - G_DBUS_SEND_MESSAGE_FLAGS_NONE, 5000, NULL, NULL, &err); + G_DBUS_SEND_MESSAGE_FLAGS_NONE, -1, NULL, NULL, &err); if (!reply) { if (err != NULL) { @@ -304,7 +304,7 @@ API int aul_window_get_focused_pid(pid_t *pid) } reply = g_dbus_connection_send_message_with_reply_sync(system_conn, msg, - G_DBUS_SEND_MESSAGE_FLAGS_NONE, 5000, NULL, NULL, &err); + G_DBUS_SEND_MESSAGE_FLAGS_NONE, -1, NULL, NULL, &err); if (!reply) { if (err != NULL) { |