From 8b4258487bf511901cb98c22b5a745ef982c0b5e Mon Sep 17 00:00:00 2001 From: Kevin Buettner Date: Thu, 22 Feb 2001 03:01:27 +0000 Subject: Made changes to shared library support and added more of the support needed for AIX/IA-64. --- gdb/solib.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gdb/solib.c') diff --git a/gdb/solib.c b/gdb/solib.c index 07d72ec121e..291ac3386a1 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -765,6 +765,27 @@ solib_create_inferior_hook (void) TARGET_SO_SOLIB_CREATE_INFERIOR_HOOK (); } +/* GLOBAL FUNCTION + + in_solib_dynsym_resolve_code -- check to see if an address is in + dynamic loader's dynamic symbol + resolution code + + SYNOPSIS + + int in_solib_dynsym_resolve_code (CORE_ADDR pc) + + DESCRIPTION + + Determine if PC is in the dynamic linker's symbol resolution + code. Return 1 if so, 0 otherwise. +*/ + +int +in_solib_dynsym_resolve_code (CORE_ADDR pc) +{ + return TARGET_SO_IN_DYNSYM_RESOLVE_CODE (pc); +} /* -- cgit v1.2.1