[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r8505 - in /fsf/trunk/libc/nptl_db: ChangeLog db-symbols.awk



Author: eglibc
Date: Thu May 28 00:08:42 2009
New Revision: 8505

Log:
Import glibc-mainline for 2009-05-28

Modified:
    fsf/trunk/libc/nptl_db/ChangeLog
    fsf/trunk/libc/nptl_db/db-symbols.awk

Modified: fsf/trunk/libc/nptl_db/ChangeLog
==============================================================================
--- fsf/trunk/libc/nptl_db/ChangeLog (original)
+++ fsf/trunk/libc/nptl_db/ChangeLog Thu May 28 00:08:42 2009
@@ -1,3 +1,9 @@
+2009-05-25  Aurelien Jarno  <aurelien@xxxxxxxxxxx>
+
+	[BZ #10200]
+	* db-symbols.awk: Use the last field for the symbol name instead
+	of the 8th one.
+
 2009-03-19  Roland McGrath  <roland@xxxxxxxxxx>
 
 	* td_symbol_list.c (DB_LOOKUP_NAME, DB_LOOKUP_NAME_TH_UNIQUE):

Modified: fsf/trunk/libc/nptl_db/db-symbols.awk
==============================================================================
--- fsf/trunk/libc/nptl_db/db-symbols.awk (original)
+++ fsf/trunk/libc/nptl_db/db-symbols.awk Thu May 28 00:08:42 2009
@@ -14,7 +14,7 @@
 
 !in_symtab { next }
 
-NF >= 8 && $7 != "UND" { seen[$8] = 1 }
+NF >= 8 && $7 != "UND" { seen[$NF] = 1 }
 
 END {
   status = 0;