mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	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:
		| @@ -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; | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user