projects
/
platform
/
upstream
/
murphy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd31ed7
)
add_defer() function fix
79/55179/1
accepted/tizen/mobile/20151224.102602
accepted/tizen/tv/20151224.102616
accepted/tizen/wearable/20151224.102637
submit/tizen/20151224.065653
submit/tizen_common/20151229.142028
submit/tizen_common/20151229.144031
submit/tizen_common/20151229.154718
author
Volodymyr Brynza
<v.brynza@samsung.com>
Tue, 22 Dec 2015 09:32:57 +0000
(11:32 +0200)
committer
Volodymyr Brynza
<v.brynza@samsung.com>
Tue, 22 Dec 2015 09:32:57 +0000
(11:32 +0200)
Change-Id: Ib12559ca8338ec215a6ec50c2f4f1c8d69c13ee0
Signed-off-by: Volodymyr Brynza <v.brynza@samsung.com>
src/common/glib-glue.c
patch
|
blob
|
history
diff --git
a/src/common/glib-glue.c
b/src/common/glib-glue.c
index 8ffd3a8e628a7b2196b3cb9b975a49bdebd24943..247744dc2161231dd22c690e80db085c1f6c46cb 100644
(file)
--- a/
src/common/glib-glue.c
+++ b/
src/common/glib-glue.c
@@
-260,7
+260,7
@@
static void *add_defer(void *glue_data,
d = mrp_allocz(sizeof(*d));
if (d != NULL) {
- d->gl_t = g_timeout_add(
0
, defer_cb, d);
+ d->gl_t = g_timeout_add(
1
, defer_cb, d);
if (d->gl_t != 0) {
d->cb = cb;