diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/solib.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 73de5ca..5a940ee 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-12-10 Mark Kettenis <kettenis@gnu.org> + + * solib.h (SOLIB_UNLOADED_LIBRARY_PATHNAME): Define as "" instead + of (0). + 2003-12-11 Dhananjay Deshpande <dhananjayd@kpitcummins.com> * MAINTAINERS (write after approval): Add myself. diff --git a/gdb/solib.h b/gdb/solib.h index 936f037..01971f4 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -149,7 +149,7 @@ extern void solib_create_inferior_hook (void); /* solib.c */ */ #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \ -(0) +"" /* This function returns TRUE if pc is the address of an instruction that lies within the dynamic linker (such as the event hook, or the dld |