mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
68b7efaadb
Also fixed the following whitespace nits to satisfy the push: sysdeps/alpha/alphaev6/memset.S:142: space before tab in indent. sysdeps/alpha/configure:1: new blank line at EOF. sysdeps/alpha/fpu/e_sqrt.c:126: space before tab in indent. sysdeps/alpha/preconfigure:1: new blank line at EOF. sysdeps/unix/sysv/linux/alpha/syscalls.list:1: new blank line at EOF.
15 lines
548 B
Plaintext
15 lines
548 B
Plaintext
#include <sysdep.h>
|
|
#include <tls.h>
|
|
|
|
--
|
|
|
|
-- Abuse tls.h macros to derive offsets relative to the thread register.
|
|
-- # define __builtin_thread_pointer() ((void *) 0)
|
|
-- # define thread_offsetof(mem) ((void *) &THREAD_SELF->mem - (void *) 0)
|
|
-- Ho hum, this doesn't work in gcc4, so Know Things about THREAD_SELF
|
|
#define thread_offsetof(mem) (long)(offsetof(struct pthread, mem) - sizeof(struct pthread))
|
|
|
|
MULTIPLE_THREADS_OFFSET thread_offsetof (header.multiple_threads)
|
|
PID_OFFSET thread_offsetof (pid)
|
|
TID_OFFSET thread_offsetof (tid)
|