From d5a187dd5a38771d72e6a52bd9a6891eb76fe8f4 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Wed, 17 Dec 2003 09:43:03 -0800 Subject: Miscellaneous minor fixes/improvements. Most notable is that the rundiff trace-output lossage is fixed! base/pollevent.cc: Use SA_RESTART to keep blocked write() calls from failing with EINTR when signals happen. base/trace.hh: Make TRACING_ON depend on NDEBUG not being set (instead of DEBUG being set) so m5.opt/m5.fast do what we want. util/rundiff: Print header lines showing file/cmd names. --HG-- extra : convert_revision : 4966814ad65aedb6d62a5a62a6ad3e3f326d61b8 --- util/rundiff | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'util') diff --git a/util/rundiff b/util/rundiff index 63c05b96b..9376e4b9e 100755 --- a/util/rundiff +++ b/util/rundiff @@ -87,6 +87,10 @@ my ($fh1, $fh2); open($fh1, $file1) or die "Can't open $file1"; open($fh2, $file2) or die "Can't open $file2"; +# print files to output so we know which is which +print "-$file1\n"; +print "+$file2\n"; + # buffer of matching lines for pre-diff context my @precontext = (); # number of post-diff matching lines remaining to print -- cgit v1.2.3