tcb-offsets.sym 436 B

12345678910111213141516
  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. PID thread_offsetof (pid)
  12. TID thread_offsetof (tid)