PERFORCE change 139901 for review

Aaron Meihm alm at FreeBSD.org
Sat Apr 12 15:55:25 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=139901

Change 139901 by alm at alm_praetorian on 2008/04/12 15:54:55

	Return immediately from writer_handler() on select
	timeout.

Affected files ...

.. //depot/projects/trustedbsd/netauditd/writer.c#4 edit

Differences ...

==== //depot/projects/trustedbsd/netauditd/writer.c#4 (text+ko) ====

@@ -80,6 +80,8 @@
 		else
 			exit(2);
 	}
+	else if (ret == 0)
+		return;
 	(void) pthread_mutex_lock(&ready_lock);
 	if (records_waiting == 0) {
 		have_records = 0;


More information about the p4-projects mailing list