Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 887249
Collapse All | Expand All

(-)vmpsd/daemon.c (-1 / +5 lines)
Lines 2-11 Link Here
2
2
3
#include "log.h"
3
#include "log.h"
4
4
5
#include <stdlib.h>
5
#include <stdio.h>
6
#include <stdio.h>
6
#include <signal.h>
7
#include <signal.h>
8
#include <sys/types.h>
7
#include <sys/param.h>
9
#include <sys/param.h>
10
#include <sys/stat.h>
8
#include <sys/wait.h>
11
#include <sys/wait.h>
12
#include <unistd.h>
9
#include <errno.h>
13
#include <errno.h>
10
14
11
#ifdef	SETPGRP_VOID
15
#ifdef	SETPGRP_VOID
Lines 38-44 RETSIGTYPE sig_child() Link Here
38
42
39
}
43
}
40
44
41
daemon_start(ignsigcld)
45
void daemon_start(ignsigcld)
42
46
43
	int	ignsigcld;	
47
	int	ignsigcld;	
44
48
(-)vmpsd/data.c (-1 / +1 lines)
Lines 2-8 Link Here
2
2
3
#include <stdlib.h>
3
#include <stdlib.h>
4
#include <search.h>
4
#include <search.h>
5
#include <stdlib.h>
5
#include <string.h>
6
6
7
#include "data.h"
7
#include "data.h"
8
#include "log.h"
8
#include "log.h"
(-)vmpsd/external.c (+2 lines)
Lines 1-5 Link Here
1
#include <stdlib.h>
1
#include <stdio.h>
2
#include <stdio.h>
2
#include <signal.h>
3
#include <signal.h>
4
#include <string.h>
3
#include <sys/param.h>
5
#include <sys/param.h>
4
#include <sys/wait.h>
6
#include <sys/wait.h>
5
#include <sys/types.h>
7
#include <sys/types.h>
(-)vmpsd/parser.c (+1 lines)
Lines 1-5 Link Here
1
#include "config.h"
1
#include "config.h"
2
2
3
#include <stdlib.h>
3
#include <stdio.h>
4
#include <stdio.h>
4
#include <ctype.h>
5
#include <ctype.h>
5
#include <string.h>
6
#include <string.h>
(-)vmpsd/vmpsd.c (+2 lines)
Lines 1-7 Link Here
1
#include "config.h"
1
#include "config.h"
2
2
3
#include <stdlib.h>
3
#include <stdlib.h>
4
#include <stdio.h>
4
#include <signal.h>
5
#include <signal.h>
6
#include <string.h>
5
7
6
#if HAVE_UNISTD_H
8
#if HAVE_UNISTD_H
7
#include <unistd.h>
9
#include <unistd.h>
(-)vmpsd/vqp.c (+1 lines)
Lines 1-5 Link Here
1
#include "config.h"
1
#include "config.h"
2
2
3
#include <string.h>
3
#include <netdb.h>
4
#include <netdb.h>
4
5
5
#include "log.h"
6
#include "log.h"

Return to bug 887249