From: Patrick M. <ume...@us...> - 2006-04-12 19:17:26
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23680 Modified Files: daemon.c Log Message: Removed ru_inblock and ru_oublock as they are not defined by POSIX. Index: daemon.c =================================================================== RCS file: /cvsroot/radmind/radmind/daemon.c,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** daemon.c 17 Feb 2006 16:35:06 -0000 1.75 --- daemon.c 12 Apr 2006 19:17:11 -0000 1.76 *************** *** 483,492 **** if ( debug ) { printf( ! "User time %.3fs, System time %.3fs, I/O %ld/%ld blocks\n", utime, stime, usage.ru_inblock, usage.ru_oublock ); ! } else { ! syslog( LOG_ERR, ! "child %d User time %.3fs, System time %.3fs", pid, utime, stime ); ! } if ( WIFEXITED( status )) { --- 483,491 ---- if ( debug ) { printf( ! "child %d User time %.3fs, System time %.3fs\n", pid, utime, stime ); ! } ! syslog( LOG_ERR, "child %d User time %.3fs, System time %.3fs", ! pid, utime, stime ); if ( WIFEXITED( status )) { |