* varobj.c (varobj_update): Change first parameter to
pointer to struct varobj*. This function can delete varobjs, so we need to give callers the new varobj when this happens. (value_of_root): Update "var", too, if "var_handle" changes. * varobj.h (varobj_update): Likewise.
This commit is contained in:
parent
2bf63d860a
commit
705da5797a
3 changed files with 29 additions and 14 deletions
|
@ -1,3 +1,13 @@
|
||||||
|
2001-08-17 Keith Seitz <keiths@redhat.com>
|
||||||
|
|
||||||
|
* varobj.c (varobj_update): Change first parameter to
|
||||||
|
pointer to struct varobj*. This function can delete
|
||||||
|
varobjs, so we need to give callers the new varobj
|
||||||
|
when this happens.
|
||||||
|
(value_of_root): Update "var", too, if "var_handle"
|
||||||
|
changes.
|
||||||
|
* varobj.h (varobj_update): Likewise.
|
||||||
|
|
||||||
2001-08-17 Keith Seitz <keiths@redhat.com>
|
2001-08-17 Keith Seitz <keiths@redhat.com>
|
||||||
|
|
||||||
* Makefile.in (varobj_h): Define.
|
* Makefile.in (varobj_h): Define.
|
||||||
|
|
31
gdb/varobj.c
31
gdb/varobj.c
|
@ -866,10 +866,14 @@ varobj_list (struct varobj ***varlist)
|
||||||
-2 if the type changed
|
-2 if the type changed
|
||||||
Otherwise it is the number of children + parent changed
|
Otherwise it is the number of children + parent changed
|
||||||
|
|
||||||
Only root variables can be updated... */
|
Only root variables can be updated...
|
||||||
|
|
||||||
|
NOTE: This function may delete the caller's varobj. If it
|
||||||
|
returns -2, then it has done this and VARP will be modified
|
||||||
|
to point to the new varobj. */
|
||||||
|
|
||||||
int
|
int
|
||||||
varobj_update (struct varobj *var, struct varobj ***changelist)
|
varobj_update (struct varobj **varp, struct varobj ***changelist)
|
||||||
{
|
{
|
||||||
int changed = 0;
|
int changed = 0;
|
||||||
int type_changed;
|
int type_changed;
|
||||||
|
@ -889,7 +893,7 @@ varobj_update (struct varobj *var, struct varobj ***changelist)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
/* Only root variables can be updated... */
|
/* Only root variables can be updated... */
|
||||||
if (var->root->rootvar != var)
|
if ((*varp)->root->rootvar != *varp)
|
||||||
/* Not a root var */
|
/* Not a root var */
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
@ -903,10 +907,10 @@ varobj_update (struct varobj *var, struct varobj ***changelist)
|
||||||
value_of_root variable dispose of the varobj if the type
|
value_of_root variable dispose of the varobj if the type
|
||||||
has changed. */
|
has changed. */
|
||||||
type_changed = 1;
|
type_changed = 1;
|
||||||
new = value_of_root (&var, &type_changed);
|
new = value_of_root (varp, &type_changed);
|
||||||
if (new == NULL)
|
if (new == NULL)
|
||||||
{
|
{
|
||||||
var->error = 1;
|
(*varp)->error = 1;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -917,34 +921,34 @@ varobj_update (struct varobj *var, struct varobj ***changelist)
|
||||||
them note that it's changed. */
|
them note that it's changed. */
|
||||||
if (type_changed)
|
if (type_changed)
|
||||||
{
|
{
|
||||||
vpush (&result, var);
|
vpush (&result, *varp);
|
||||||
changed++;
|
changed++;
|
||||||
}
|
}
|
||||||
/* If values are not equal, note that it's changed.
|
/* If values are not equal, note that it's changed.
|
||||||
There a couple of exceptions here, though.
|
There a couple of exceptions here, though.
|
||||||
We don't want some types to be reported as "changed". */
|
We don't want some types to be reported as "changed". */
|
||||||
else if (type_changeable (var) && !my_value_equal (var->value, new, &error2))
|
else if (type_changeable (*varp) && !my_value_equal ((*varp)->value, new, &error2))
|
||||||
{
|
{
|
||||||
vpush (&result, var);
|
vpush (&result, *varp);
|
||||||
changed++;
|
changed++;
|
||||||
/* error2 replaces var->error since this new value
|
/* error2 replaces var->error since this new value
|
||||||
WILL replace the old one. */
|
WILL replace the old one. */
|
||||||
var->error = error2;
|
(*varp)->error = error2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We must always keep around the new value for this root
|
/* We must always keep around the new value for this root
|
||||||
variable expression, or we lose the updated children! */
|
variable expression, or we lose the updated children! */
|
||||||
value_free (var->value);
|
value_free ((*varp)->value);
|
||||||
var->value = new;
|
(*varp)->value = new;
|
||||||
|
|
||||||
/* Initialize a stack */
|
/* Initialize a stack */
|
||||||
vpush (&stack, NULL);
|
vpush (&stack, NULL);
|
||||||
|
|
||||||
/* Push the root's children */
|
/* Push the root's children */
|
||||||
if (var->children != NULL)
|
if ((*varp)->children != NULL)
|
||||||
{
|
{
|
||||||
struct varobj_child *c;
|
struct varobj_child *c;
|
||||||
for (c = var->children; c != NULL; c = c->next)
|
for (c = (*varp)->children; c != NULL; c = c->next)
|
||||||
vpush (&stack, c->child);
|
vpush (&stack, c->child);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1647,6 +1651,7 @@ value_of_root (struct varobj **var_handle, int *type_changed)
|
||||||
}
|
}
|
||||||
install_variable (tmp_var);
|
install_variable (tmp_var);
|
||||||
*var_handle = tmp_var;
|
*var_handle = tmp_var;
|
||||||
|
var = *var_handle;
|
||||||
*type_changed = 1;
|
*type_changed = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,6 +95,6 @@ extern int varobj_set_value (struct varobj *var, char *expression);
|
||||||
|
|
||||||
extern int varobj_list (struct varobj ***rootlist);
|
extern int varobj_list (struct varobj ***rootlist);
|
||||||
|
|
||||||
extern int varobj_update (struct varobj *var, struct varobj ***changelist);
|
extern int varobj_update (struct varobj **varp, struct varobj ***changelist);
|
||||||
|
|
||||||
#endif /* VAROBJ_H */
|
#endif /* VAROBJ_H */
|
||||||
|
|
Loading…
Reference in a new issue