summaryrefslogtreecommitdiffstats
path: root/backend/xevrep.h
blob: 5e978e11b985e8b3b47b50709289a93866342a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BACKEND_XEVREP_H_ 
#define BACKEND_XEVREP_H_ 

#include <unistd.h>
#include <sys/types.h>
#include <sys/signal.h>


struct xevrep {
	sig_atomic_t helper_pid;
	sig_atomic_t killed;
};

int xevrep_enable(struct xevrep *xr);
void xevrep_disable(struct xevrep *xr);
void xevrep_sigchld(struct xevrep *xr, int wait);

#endif /* BACKEND_XEVREP_H_ */
bues.ch cgit interface