td_ta_tsd_iter.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Iterate over a process's thread-specific data.
  2. Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@redhat.com>, 1999.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #include "thread_dbP.h"
  17. #include <alloca.h>
  18. td_err_e
  19. td_ta_tsd_iter (const td_thragent_t *ta_arg, td_key_iter_f *callback,
  20. void *cbdata_p)
  21. {
  22. td_thragent_t *const ta = (td_thragent_t *) ta_arg;
  23. td_err_e err;
  24. void *keys;
  25. size_t keys_nb, keys_elemsize;
  26. psaddr_t addr;
  27. uint32_t idx;
  28. LOG ("td_ta_tsd_iter");
  29. /* Test whether the TA parameter is ok. */
  30. if (! ta_ok (ta))
  31. return TD_BADTA;
  32. /* This makes sure we have the size information on hand. */
  33. addr = 0;
  34. err = _td_locate_field (ta,
  35. ta->ta_var___pthread_keys, SYM_DESC___pthread_keys,
  36. (psaddr_t) 0 + 1, &addr);
  37. if (err != TD_OK)
  38. return err;
  39. /* Now copy in the entire array of key descriptors. */
  40. keys_elemsize = (addr - (psaddr_t) 0) / 8;
  41. keys_nb = keys_elemsize * DB_DESC_NELEM (ta->ta_var___pthread_keys);
  42. keys = __alloca (keys_nb);
  43. err = DB_GET_SYMBOL (addr, ta, __pthread_keys);
  44. if (err != TD_OK)
  45. return err;
  46. if (ps_pdread (ta->ph, addr, keys, keys_nb) != PS_OK)
  47. return TD_ERR;
  48. /* Now get all descriptors, one after the other. */
  49. for (idx = 0; idx < DB_DESC_NELEM (ta->ta_var___pthread_keys); ++idx)
  50. {
  51. psaddr_t seq, destr;
  52. err = DB_GET_FIELD_LOCAL (seq, ta, keys, pthread_key_struct, seq, 0);
  53. if (err != TD_OK)
  54. return err;
  55. if (((uintptr_t) seq) & 1)
  56. {
  57. err = DB_GET_FIELD_LOCAL (destr, ta, keys, pthread_key_struct,
  58. destr, 0);
  59. if (err != TD_OK)
  60. return err;
  61. /* Return with an error if the callback returns a nonzero value. */
  62. if (callback ((thread_key_t) idx, destr, cbdata_p) != 0)
  63. return TD_DBERR;
  64. }
  65. /* Advance to the next element in the copied array. */
  66. keys += keys_elemsize;
  67. }
  68. return TD_OK;
  69. }