tcb-offsets.sym 598 B

12345678910111213141516171819
  1. #include <sysdep.h>
  2. #include <tls.h>
  3. --
  4. -- Abuse tls.h macros to derive offsets relative to the thread register.
  5. # undef __thread_register
  6. # define __thread_register ((void *) 0)
  7. # define thread_offsetof(mem) ((ptrdiff_t) THREAD_SELF + offsetof (struct pthread, mem))
  8. #if TLS_MULTIPLE_THREADS_IN_TCB
  9. MULTIPLE_THREADS_OFFSET thread_offsetof (header.multiple_threads)
  10. #endif
  11. TID thread_offsetof (tid)
  12. POINTER_GUARD (offsetof (tcbhead_t, pointer_guard) - TLS_TCB_OFFSET - sizeof (tcbhead_t))
  13. #ifndef __ASSUME_PRIVATE_FUTEX
  14. PRIVATE_FUTEX_OFFSET thread_offsetof (header.private_futex)
  15. #endif