X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafs-supervisor.c;fp=src%2Fafs-supervisor.c;h=35a3f3e1312e2bebd597b22056ed6d4ab54be6b4;hb=a6e6791f45941063b17a100a6d5d5c9e5cf250d3;hp=8cf21cb589d314c9faf93724a91234fd406313a6;hpb=abbb4599f0b921c6f434b6bd02bcfb277eecf745;p=src%2Fapp-framework-binder.git diff --git a/src/afs-supervisor.c b/src/afs-supervisor.c index 8cf21cb5..35a3f3e1 100644 --- a/src/afs-supervisor.c +++ b/src/afs-supervisor.c @@ -277,13 +277,17 @@ static void discovered_cb(void *closure, pid_t pid) struct supervised *s; s = supervised_of_pid(pid); - if (!s) + if (!s) { + (*(int*)closure)++; kill(pid, SIGHUP); + } } -static void discover_supervised() +static int discover_supervised() { - afs_discover("afb-daemon", discovered_cb, NULL); + int n = 0; + afs_discover("afb-daemon", discovered_cb, &n); + return n; } /** @@ -411,6 +415,12 @@ static void f_list(struct afb_req req) afb_req_success(req, resu, NULL); } +static void f_discover(struct afb_req req) +{ + discover_supervised(); + afb_req_success(req, NULL, NULL); +} + static void propagate(struct afb_req req, const char *verb) { struct afb_xreq *xreq; @@ -555,6 +565,13 @@ static const struct afb_verb_v2 _afb_verbs_v2_supervision[] = { .info = NULL, .session = AFB_SESSION_NONE_V2 }, + { + .verb = "discover", + .callback = f_discover, + .auth = &_afb_auths_v2_supervision[0], + .info = NULL, + .session = AFB_SESSION_NONE_V2 + }, { .verb = NULL } };