Use a SIGPIPE to kill the process, instead of depending upon the astcanary process being inherited by init.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@178342 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2009-02-24 20:06:48 +00:00
parent bb2b9b1ff4
commit 97830cc9cb
2 changed files with 19 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ int main(int argc, char *argv[])
int fd;
/* Run at normal priority */
setpriority(PRIO_PROCESS, 0, 0);
for (; getppid() != 1;) {
for (;;) {
/* Update the modification times (checked from Asterisk) */
if (utime(argv[1], NULL)) {
/* Recreate the file if it doesn't exist */
@@ -108,7 +108,7 @@ int main(int argc, char *argv[])
sleep(5);
}
/* Reached if asterisk (our parent process) dies - its chldren are inherited by the init process (pid is 1). */
/* Never reached */
return 0;
}