/*- * Copyright (c) 1987, 1990 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint char copyright[] = "@(#) Copyright (c) 1987, 1990 The Regents of the University of California.\n\ All rights reserved.\n"; #endif /* not lint */ #ifndef lint static char sccsid[] = "@(#)update.c 5.1 (Berkeley) 06/06/91"; #endif /* not lint */ #include #include #include #include #include main() { struct itimerval value; void mysync(); daemon(0, 0); (void)signal(SIGALRM, mysync); value.it_interval.tv_sec = 30; value.it_interval.tv_usec = 0; value.it_value = value.it_interval; if (setitimer(ITIMER_REAL, &value, NULL)) { perror("update: setitimer"); exit(1); } for (;;) sigpause(sigblock(0L)); /* NOTREACHED */ } void mysync() { (void)sync(); }