2367213831
LibMicro is a portable set of microbenchmarks that many Solaris engineers used during Solaris 10 development to measure the performance of various system and library calls. LibMicro was developed by Bart Smaalders and Phil Harman as part of their "If Linux is faster it's a Solaris bug performance" campaign.
32 lines
555 B
Text
32 lines
555 B
Text
$NetBSD: patch-ai,v 1.1.1.1 2009/11/22 00:45:54 jym Exp $
|
|
|
|
--- multiview.sh.orig 2007-07-02 23:17:45.000000000 +0200
|
|
+++ multiview.sh
|
|
@@ -38,15 +38,15 @@
|
|
# the redder the color, the slower the result, the greener the
|
|
# faster
|
|
|
|
-/bin/nawk ' BEGIN {
|
|
+awk ' BEGIN {
|
|
benchmark_count = 0;
|
|
header_count = 0;
|
|
}
|
|
/^#/ {
|
|
- continue;
|
|
+ next;
|
|
}
|
|
/errors/ {
|
|
- continue;
|
|
+ next;
|
|
}
|
|
/^\!/ {
|
|
split($0, A_header, ":");
|
|
@@ -57,7 +57,7 @@
|
|
header_names[name] = ++header_count;
|
|
headers[header_count] = name;
|
|
}
|
|
- continue;
|
|
+ next;
|
|
}
|
|
|
|
{
|