X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-apis.c;h=9dcb18098cec5b8de4942d81747e329e4390cc8e;hb=13549775092afa9215de8468e34f6d194c2fd8db;hp=55e68c932d7442381e1208d352fb3495e813dce8;hpb=efe18167d6ce59b263c179a6e2d01aa875c05cf8;p=src%2Fapp-framework-binder.git diff --git a/src/afb-apis.c b/src/afb-apis.c index 55e68c93..9dcb1809 100644 --- a/src/afb-apis.c +++ b/src/afb-apis.c @@ -63,7 +63,9 @@ static int apis_count = 0; static const char plugin_register_function[] = "pluginRegister"; static const struct afb_poll_itf upoll_itf = { - .update = (void*)upoll_update, + .on_readable = (void*)upoll_on_readable, + .on_writable = (void*)upoll_on_writable, + .on_hangup = (void*)upoll_on_hangup, .close = (void*)upoll_close }; @@ -85,10 +87,10 @@ void afb_apis_free_context(int apiidx, void *context) free(context); } -static struct afb_poll itf_poll_open(int fd, uint32_t events, void (*process)(void *closure, int fd, uint32_t events), void *closure) +static struct afb_poll itf_poll_open(int fd, void *closure) { struct afb_poll result; - result.data = upoll_open(fd, events, process, closure); + result.data = upoll_open(fd, closure); result.itf = result.data ? &upoll_itf : NULL; return result; }