]> git.ipfire.org Git - thirdparty/glibc.git/blame - dlfcn/dladdr.c
time: Allow later version licensing.
[thirdparty/glibc.git] / dlfcn / dladdr.c
CommitLineData
a2b08ee5 1/* Locate the shared object symbol nearest a given address.
dff8da6b 2 Copyright (C) 1996-2024 Free Software Foundation, Inc.
afd4eb37 3 This file is part of the GNU C Library.
a2b934be 4
afd4eb37 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
a2b934be 9
afd4eb37
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
a2b934be 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
a2b934be 18
a2b934be 19#include <dlfcn.h>
8e1472d2 20#include <ldsodefs.h>
602252b5 21#include <shlib-compat.h>
5f21997b
UD
22
23int
24__dladdr (const void *address, Dl_info *info)
25{
602252b5 26#ifdef SHARED
8dcb6d0a 27 if (GLRO (dl_dlfcn_hook) != NULL)
466c1ea1 28 return GLRO (dl_dlfcn_hook)->dladdr (address, info);
602252b5 29#endif
8dd56993 30 return _dl_addr (address, info, NULL, NULL);
a2b934be 31}
602252b5
FW
32versioned_symbol (libc, __dladdr, dladdr, GLIBC_2_34);
33
34#if OTHER_SHLIB_COMPAT (libdl, GLIBC_2_0, GLIBC_2_34)
35compat_symbol (libdl, __dladdr, dladdr, GLIBC_2_0);
5f21997b 36#endif