Problem with glibc mainline and linuxthreads on x86-64
Roland McGrath
roland@frob.com
Wed Aug 21 23:02:00 GMT 2002
Does this fix it for you?
--- firstversions.awk.~1.5.~ Sun Apr 7 19:14:19 2002
+++ firstversions.awk Wed Aug 21 23:01:23 2002
@@ -37,10 +37,14 @@ $1 == "}" {
else
break;
}
- if ($1 >= v || $1 == f)
+ if ($1 == f || $1 == v)
print;
+ else if ($1 > v) {
+ print " " v;
+ print " " $1;
+ }
else
- print $1, "=", v;
+ print " " $1, "=", v;
}
else
print;
More information about the Libc-hacker
mailing list