summaryrefslogtreecommitdiff
path: root/nptl_db
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2009-05-27 16:41:00 -0700
committerRoland McGrath <roland@redhat.com>2009-05-27 16:41:00 -0700
commit8ee84bd01f85b5ab1430750270b7e51a967d03eb (patch)
treeb418165e062982f083243b2f2f051e64a75c4af9 /nptl_db
parent57be3fd79a418b14e417e9a6b96f05dcb99932ee (diff)
[BZ #10200]
* db-symbols.awk: Use the last field for the symbol name instead of the 8th one.
Diffstat (limited to 'nptl_db')
-rw-r--r--nptl_db/ChangeLog6
-rw-r--r--nptl_db/db-symbols.awk2
2 files changed, 7 insertions, 1 deletions
diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog
index 8c07d9f32f..1ade1968a7 100644
--- a/nptl_db/ChangeLog
+++ b/nptl_db/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-25 Aurelien Jarno <aurelien@aurel32.net>
+
+ [BZ #10200]
+ * db-symbols.awk: Use the last field for the symbol name instead
+ of the 8th one.
+
2009-03-19 Roland McGrath <roland@redhat.com>
* td_symbol_list.c (DB_LOOKUP_NAME, DB_LOOKUP_NAME_TH_UNIQUE):
diff --git a/nptl_db/db-symbols.awk b/nptl_db/db-symbols.awk
index 33272138f7..f9a91b93bf 100644
--- a/nptl_db/db-symbols.awk
+++ b/nptl_db/db-symbols.awk
@@ -14,7 +14,7 @@ NF == 0 { in_symtab=0; next }
!in_symtab { next }
-NF >= 8 && $7 != "UND" { seen[$8] = 1 }
+NF >= 8 && $7 != "UND" { seen[$NF] = 1 }
END {
status = 0;