From 8ee84bd01f85b5ab1430750270b7e51a967d03eb Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Wed, 27 May 2009 16:41:00 -0700 Subject: [PATCH] [BZ #10200] * db-symbols.awk: Use the last field for the symbol name instead of the 8th one. --- nptl_db/ChangeLog | 6 ++++++ nptl_db/db-symbols.awk | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog index 8c07d9f..1ade196 100644 --- a/nptl_db/ChangeLog +++ b/nptl_db/ChangeLog @@ -1,3 +1,9 @@ +2009-05-25 Aurelien Jarno + + [BZ #10200] + * db-symbols.awk: Use the last field for the symbol name instead + of the 8th one. + 2009-03-19 Roland McGrath * 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 3327213..f9a91b9 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; -- 2.7.4