diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2018-11-22 16:44:12 -0800 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2018-11-30 14:58:05 -0800 |
commit | bf445d2476168ea57433c01a9a3f6107c87dc782 (patch) | |
tree | 43be703619a03529e86df9750575c362d75d01b9 /src/lib/ecore_con/efl_net_ip_address.c | |
parent | 98b716d0fa745fe5aa4d110615bf0dd90f695ddb (diff) |
ecore_con: simplify code by using proper helper.
efl_loop_promise_new is a helper function that does automatically figure out an
available scheduler and create a promise from it. Basically replacing the call to
eina_promise_new(efl_loop_future_scheduler_get(o), ...).
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Reviewed-by: Vitor Sousa da Silva <vitorsousa@expertisesolutions.com.br>
Differential Revision: https://phab.enlightenment.org/D7333
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_con/efl_net_ip_address.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_con/efl_net_ip_address.c b/src/lib/ecore_con/efl_net_ip_address.c index e2fbb68f06..276f102f9c 100644 --- a/src/lib/ecore_con/efl_net_ip_address.c +++ b/src/lib/ecore_con/efl_net_ip_address.c | |||
@@ -572,7 +572,7 @@ _efl_net_ip_address_resolve(Eo *cls EINA_UNUSED, void *pd EINA_UNUSED, const cha | |||
572 | ctx->thread = efl_net_ip_resolve_async_new(host, port, &hints, _efl_net_ip_address_resolve_done, ctx); | 572 | ctx->thread = efl_net_ip_resolve_async_new(host, port, &hints, _efl_net_ip_address_resolve_done, ctx); |
573 | EINA_SAFETY_ON_NULL_GOTO(ctx->thread, error_thread); | 573 | EINA_SAFETY_ON_NULL_GOTO(ctx->thread, error_thread); |
574 | 574 | ||
575 | ctx->promise = eina_promise_new(efl_loop_future_scheduler_get(efl_main_loop_get()), _efl_net_ip_address_resolve_del, ctx); | 575 | ctx->promise = efl_loop_promise_new(efl_main_loop_get(), _efl_net_ip_address_resolve_del, ctx); |
576 | EINA_SAFETY_ON_NULL_GOTO(ctx->promise, error_promise); | 576 | EINA_SAFETY_ON_NULL_GOTO(ctx->promise, error_promise); |
577 | 577 | ||
578 | free(str); | 578 | free(str); |