diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-10-31 23:21:33 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-10-31 23:21:33 +0000 |
commit | 68e9cc944cbd49fd6a7108caee8f77b924c2c40b (patch) | |
tree | 85c7ada45075581451798f3cf38756237579ce58 /gdb/infrun.c | |
parent | 0a299a95a8b2a3a22c8db54f4df4e89ea3e168ef (diff) | |
download | gdb-68e9cc944cbd49fd6a7108caee8f77b924c2c40b.zip gdb-68e9cc944cbd49fd6a7108caee8f77b924c2c40b.tar.gz gdb-68e9cc944cbd49fd6a7108caee8f77b924c2c40b.tar.bz2 |
* arch-utils.c (generic_in_solib_call_trampoline): New function.
* arch-utils.h (generic_in_solib_call_trampoline): Extern declaration.
* gdbarch.c: Regenerated from gdbarch.sh.
* gdbarch.h: Ditto.
* gdbarch.sh (function_list): Add `IN_SOLIB_CALL_TRAMPOLINE' definition.
* infrun.c (IN_SOLIB_CALL_TRAMPOLINE): Remove macro.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 18bb8c0..0730f91 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -183,14 +183,6 @@ static int may_follow_exec = MAY_FOLLOW_EXEC; #define SKIP_SOLIB_RESOLVER(pc) 0 #endif -/* For SVR4 shared libraries, each call goes through a small piece of - trampoline code in the ".plt" section. IN_SOLIB_CALL_TRAMPOLINE evaluates - to nonzero if we are current stopped in one of these. */ - -#ifndef IN_SOLIB_CALL_TRAMPOLINE -#define IN_SOLIB_CALL_TRAMPOLINE(pc,name) 0 -#endif - /* In some shared library schemes, the return path from a shared library call may need to go through a trampoline too. */ |