From c70a4b1db0cf5e813ae24b0fa96a352399eb6edf Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 15 Feb 2014 22:07:25 -0500 Subject: ia64: relocate out of ports/ subdir --- ports/sysdeps/ia64/libc-tls.c | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 ports/sysdeps/ia64/libc-tls.c (limited to 'ports/sysdeps/ia64/libc-tls.c') diff --git a/ports/sysdeps/ia64/libc-tls.c b/ports/sysdeps/ia64/libc-tls.c deleted file mode 100644 index d21243899e..0000000000 --- a/ports/sysdeps/ia64/libc-tls.c +++ /dev/null @@ -1,31 +0,0 @@ -/* Thread-local storage handling in the ELF dynamic linker. IA-64 version. - Copyright (C) 2003-2014 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 - . */ - -#include - -/* On IA-64, as it lacks linker optimizations, __tls_get_addr can be - called even in statically linked binaries. - In this case module must be always 1 and PT_TLS segment - exist in the binary, otherwise it would not link. */ - -void * -__tls_get_addr (size_t m, size_t offset) -{ - dtv_t *dtv = THREAD_DTV (); - return (char *) dtv[1].pointer.val + offset; -} -- cgit 1.4.1