aboutsummaryrefslogtreecommitdiff
path: root/gdb/jv-lang.c
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>1998-12-31 21:58:30 +0000
committerDavid Taylor <taylor@redhat.com>1998-12-31 21:58:30 +0000
commit65b07ddca8832033e0e102c3a2a0d9f9f5922a9d (patch)
tree7fc8cee254f271f4cc57e64bcb23576fa121e706 /gdb/jv-lang.c
parentc450a7fe3f5214f42118a04639074d0e3883582c (diff)
downloadfsf-binutils-gdb-65b07ddca8832033e0e102c3a2a0d9f9f5922a9d.zip
fsf-binutils-gdb-65b07ddca8832033e0e102c3a2a0d9f9f5922a9d.tar.gz
fsf-binutils-gdb-65b07ddca8832033e0e102c3a2a0d9f9f5922a9d.tar.bz2
all remaining *.c *.h files from hp merge.
Diffstat (limited to 'gdb/jv-lang.c')
-rw-r--r--gdb/jv-lang.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/jv-lang.c b/gdb/jv-lang.c
index c852446..8ada2e7 100644
--- a/gdb/jv-lang.c
+++ b/gdb/jv-lang.c
@@ -59,7 +59,13 @@ get_dynamics_objfile ()
{
if (dynamics_objfile == NULL)
{
- dynamics_objfile = allocate_objfile (NULL, 0);
+
+/* CHECK WITH STU -- edie. Params 3 and 4 are USER_LOADED and IS_SOLIB.
+ USER_LOADED - used by run_command to remove old objfile entries which
+ are no longer valid
+ IS_SOLIB - 1 if the object file is a shared library */
+
+ dynamics_objfile = allocate_objfile (NULL, 0, 0, 0);
}
return dynamics_objfile;
}