This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problem with glibc mainline and linuxthreads on x86-64


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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]