td_thr_tls_get_addr.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* Get address of thread local variable.
  2. Copyright (C) 2002,2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@cygnus.com>, 2002.
  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 <link.h>
  17. #include "thread_dbP.h"
  18. td_err_e
  19. td_thr_tls_get_addr (const td_thrhandle_t *th __attribute__ ((unused)),
  20. void *map_address __attribute__ ((unused)),
  21. size_t offset __attribute__ ((unused)),
  22. void **address __attribute__ ((unused)))
  23. {
  24. #ifdef __UCLIBC_HAS_TLS__
  25. /* Read the module ID from the link_map. */
  26. size_t modid;
  27. if (ps_pdread (th->th_ta_p->ph,
  28. &((struct link_map *) map_address)->l_tls_modid,
  29. &modid, sizeof modid) != PS_OK)
  30. return TD_ERR; /* XXX Other error value? */
  31. td_err_e result = td_thr_tlsbase (th, modid, address);
  32. if (result == TD_OK)
  33. *address += offset;
  34. return result;
  35. #else
  36. return TD_ERR;
  37. #endif
  38. }