diff options
author | br <br@FreeBSD.org> | 2016-04-14 15:31:05 +0000 |
---|---|---|
committer | br <br@FreeBSD.org> | 2016-04-14 15:31:05 +0000 |
commit | a0acfbfb47d8d1ab9dfa63c00feeeaadf2ad0333 (patch) | |
tree | d922675ada70b78c15f86e26745d0c2f65e9830a | |
parent | 474f44319db073b7d8964667a071f3d68b074d92 (diff) | |
download | FreeBSD-src-a0acfbfb47d8d1ab9dfa63c00feeeaadf2ad0333.zip FreeBSD-src-a0acfbfb47d8d1ab9dfa63c00feeeaadf2ad0333.tar.gz |
Unmagic the thread pointer offset.
-rw-r--r-- | lib/libthr/arch/riscv/include/pthread_md.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/arch/riscv/include/pthread_md.h b/lib/libthr/arch/riscv/include/pthread_md.h index 86eccc1..3f51078 100644 --- a/lib/libthr/arch/riscv/include/pthread_md.h +++ b/lib/libthr/arch/riscv/include/pthread_md.h @@ -46,7 +46,7 @@ #define CPU_SPINWAIT #define DTV_OFFSET offsetof(struct tcb, tcb_dtv) -#define TP_OFFSET 0x10 +#define TP_OFFSET sizeof(struct tcb) /* * Variant I tcb. The structure layout is fixed, don't blindly |