From c38fcbf3df0131caebec0ce0414fc409b63e9d93 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 21 Oct 2008 13:57:35 -0400 Subject: Make return the pid when new process are started. Monitor each service and restart it conditionally if it fails. These monitoring is extremely simple at this moment and just uses waitpid() to check if the client is alive, there is no active probing, that will require dbus. Make nsssrv.c read the sss pipe config option for the config db. --- server/process.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'server/process.c') diff --git a/server/process.c b/server/process.c index e2600a5d..ebe6ba1e 100644 --- a/server/process.c +++ b/server/process.c @@ -44,7 +44,8 @@ static int none_setproctitle(const char *fmt, ...) int process_new_task(struct event_context *ev, const char *service_name, void (*new_task)(struct event_context *, void *), - void *private) + void *private, + pid_t *rpid) { pid_t pid; struct event_context *ev2; @@ -62,6 +63,10 @@ int process_new_task(struct event_context *ev, res = ECHILD; } + if (rpid) { + *rpid = pid; + } + /* ... go back to the event loop */ return res; } -- cgit