aboutsummaryrefslogtreecommitdiff
path: root/update.c
blob: 3a8cd37ee638b02c42b007eab1341b54837487e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "internal.h"
#include <linux/unistd.h>

#if defined(__GLIBC__)
#include <sys/kdaemon.h>
#else
_syscall2(int, bdflush, int, func, int, data);
#endif /* __GLIBC__ */

extern int
update_main(int argc, char** argv)
{
	/*
	 * Update is actually two daemons, bdflush and update.
	 */
	int	pid;

	pid = fork();
	if ( pid < 0 )
		return pid;
	else if ( pid == 0 ) {
		/*
		 * This is no longer necessary since 1.3.5x, but it will harmlessly
		 * exit if that is the case.
		 */
		strcpy(argv[0], "bdflush (update)");
		argv[1] = 0;
		argv[2] = 0;
		bdflush(1, 0);
		_exit(0);
	}
	pid = fork();
	if ( pid < 0 )
		return pid;
	else if ( pid == 0 ) {
		argv[0] = "update";
		for ( ; ; ) {
			sync();
			sleep(30);
		}
	}

	return 0;
}