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

(-)syslogd.c (-1 / +1 lines)
Lines 2139-2145 Link Here
2139
	(void) signal(SIGCHLD, reapchild);	/* reset signal handler -ASP */
2139
	(void) signal(SIGCHLD, reapchild);	/* reset signal handler -ASP */
2140
	wait ((int *)0);
2140
	wait ((int *)0);
2141
#else
2141
#else
2142
	union wait status;
2142
	int status;
2143
2143
2144
	while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
2144
	while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
2145
		;
2145
		;

Return to bug 604232