summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Bail <cedric@osg.samsung.com>2018-04-10 14:39:21 -0700
committerCedric Bail <cedric@osg.samsung.com>2018-04-10 14:42:54 -0700
commit664c1c8eb4051be82eb3b020ea9f37dda23b397c (patch)
tree0124184df2720ab525ba473cbb22baa0537714ed
parentf1f1a8c996b917cf4dded4e08ce0f717accbca5a (diff)
downloadefl-664c1c8eb4051be82eb3b020ea9f37dda23b397c.tar.gz
evas: we directly use the main loop, we do not need external integration anymore.
-rw-r--r--src/lib/evas/canvas/evas_async_events.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/evas/canvas/evas_async_events.c b/src/lib/evas/canvas/evas_async_events.c
index 5cbf90a201..8b6bb29df1 100644
--- a/src/lib/evas/canvas/evas_async_events.c
+++ b/src/lib/evas/canvas/evas_async_events.c
@@ -107,7 +107,6 @@ _evas_async_events_fork_handle(void *data EINA_UNUSED)
{
ecore_pipe_del(_async_pipe);
_async_pipe = ecore_pipe_add(_async_events_pipe_read_cb, NULL);
- ecore_pipe_freeze(_async_pipe);
}
int
@@ -131,7 +130,6 @@ evas_async_events_init(void)
return 0;
}
- ecore_pipe_freeze(_async_pipe);
_read_error = EINA_FALSE;
_write_error = EINA_FALSE;
@@ -181,7 +179,7 @@ evas_async_events_shutdown(void)
EAPI int
evas_async_events_fd_get(void)
{
- return ecore_pipe_read_fd(_async_pipe);
+ return -1;
}
EAPI int