Print key value, an index, otherwise we don't know which key is allocated.

This commit is contained in:
David Xu 2012-05-21 03:06:31 +00:00
parent fa27760e2e
commit f8ad51d5e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235714
1 changed files with 1 additions and 1 deletions

View File

@ -1311,7 +1311,7 @@ tsd_cb (thread_key_t key, void (*destructor)(void *), void *ignore)
else
name = DEPRECATED_SYMBOL_NAME (ms);
printf_filtered ("Destructor %p <%s>\n", destructor, name);
printf_filtered ("Key %d, destructor %p <%s>\n", key, destructor, name);
return 0;
}