diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2018-10-23 14:18:04 -0700 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2020-07-10 16:08:44 -0700 |
commit | 0261315289cfd3183cd447dc1d7a7a5ab5aeb93d (patch) | |
tree | 94cfbf2975874b1706d167ae12fa709d88f157b7 /sysdeps/arc/libc-tls.c | |
parent | dd2e6ef179e1b50496ae6afc057b276a7786a78f (diff) | |
download | glibc-0261315289cfd3183cd447dc1d7a7a5ab5aeb93d.tar.gz glibc-0261315289cfd3183cd447dc1d7a7a5ab5aeb93d.tar.xz glibc-0261315289cfd3183cd447dc1d7a7a5ab5aeb93d.zip |
ARC: Thread Local Storage support
This includes all 4 TLS addressing models Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/arc/libc-tls.c')
-rw-r--r-- | sysdeps/arc/libc-tls.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sysdeps/arc/libc-tls.c b/sysdeps/arc/libc-tls.c new file mode 100644 index 0000000000..234932c295 --- /dev/null +++ b/sysdeps/arc/libc-tls.c @@ -0,0 +1,27 @@ +/* Thread-local storage handling in the ELF dynamic linker. ARC version. + Copyright (C) 2020 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library. If not, see + <https://www.gnu.org/licenses/>. */ + +#include <csu/libc-tls.c> +#include <dl-tls.h> + +void * +__tls_get_addr (tls_index *ti) +{ + dtv_t *dtv = THREAD_DTV (); + return (char *) dtv[1].pointer.val + ti->ti_offset; +} |