summaryrefslogtreecommitdiffstats
path: root/server/process.h
blob: be22a562d98cf619099d818a3b77d0d0ea88a757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __SSSD_PROCESS_H__
#define __SSSD_PROCESS_H__

int process_new_task(struct event_context *ev,
			    const char *service_name,
			    void (*new_task)(struct event_context *, void *),
			    void *private,
			    pid_t *rpid);
void process_set_title(struct event_context *ev, const char *title);
void process_terminate(struct event_context *ev, const char *reason);

#endif /* __SSSD_PROCESS_H__ */