X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Futils-jbus.h;h=3b6ec75f002bdc464829ef4082d64715a787dfa1;hb=7fc272e5a9afc922f14c47b4c27d0a564e2de4ca;hp=218c21d63d490fd20eacedf2c48a319a034d5f4f;hpb=d7a517e6b430ba2d8a60467e3c438fe2a5c12df6;p=src%2Fapp-framework-main.git diff --git a/src/utils-jbus.h b/src/utils-jbus.h index 218c21d..3b6ec75 100644 --- a/src/utils-jbus.h +++ b/src/utils-jbus.h @@ -24,6 +24,12 @@ extern struct jbus *create_jbus(int session, const char *path); extern void jbus_addref(struct jbus *jbus); extern void jbus_unref(struct jbus *jbus); +struct pollfd; +extern int jbus_fill_pollfds(struct jbus **jbuses, int njbuses, struct pollfd *fds); +extern int jbus_dispatch_pollfds(struct jbus **jbuses, int njbuses, struct pollfd *fds, int maxcount); +extern int jbus_read_write_dispatch_multiple(struct jbus **jbuses, int njbuses, int toms, int maxcount); +extern int jbus_dispatch_multiple(struct jbus **jbuses, int njbuses, int maxcount); + extern int jbus_read_write_dispatch(struct jbus *jbus, int toms); /* verbs for the clients */ @@ -52,3 +58,4 @@ extern int jbus_start_serving(struct jbus *jbus); extern int jbus_send_signal_s(struct jbus *jbus, const char *name, const char *content); extern int jbus_send_signal_j(struct jbus *jbus, const char *name, struct json_object *content); +