unix/minit

minit.h in master
Repositories | Summary | Log | Files | README | COPYING

minit.h (408B) download


 1#ifndef MINITROOT
 2#define MINITROOT "/etc/minit"
 3#endif
 4
 5#ifndef NOVARS
 6static struct process {
 7  char *name;
 8/*  char **argv; */
 9  pid_t pid;
10  char respawn;
11  char circular;
12  time_t startedat;
13  int father;	/* the service who started me or -1 if I was started directly */
14  int __stdin,__stdout;
15  int logservice;
16} *root;
17
18static int infd,outfd;
19static int maxprocess=-1;
20static int processalloc;
21#endif