2000-11-06 Fernando Nasser <fnasser@totem.toronto.redhat.com>
authorFernando Nasser <fnasser@redhat.com>
Mon, 6 Nov 2000 23:12:29 +0000 (23:12 +0000)
committerFernando Nasser <fnasser@redhat.com>
Mon, 6 Nov 2000 23:12:29 +0000 (23:12 +0000)
        * wrapper.c (gdb_value_assign): New function.  Longjump-free
        version of value_assign.
        (wrap_value_assign): New function. Wrapper for value_assign.
        * wrapper.h: Add declaration for the above.
        * varobj.c (varobj_set_value): Use gdb_value_assign, not
        value_assign which can longjump.  Do not change varobj value if
        assign fails.

gdb/ChangeLog
gdb/varobj.c
gdb/wrapper.c
gdb/wrapper.h

index d0ad9b98750ac0cbbe47d6149cc3479b747317fc..4812ad09b35f91f01a1c37731f0df6094ce49017 100644 (file)
@@ -1,3 +1,13 @@
+2000-11-06  Fernando Nasser  <fnasser@totem.toronto.redhat.com>
+
+       * wrapper.c (gdb_value_assign): New function.  Longjump-free
+       version of value_assign.
+       (wrap_value_assign): New function. Wrapper for value_assign.
+       * wrapper.h: Add declaration for the above.
+       * varobj.c (varobj_set_value): Use gdb_value_assign, not
+       value_assign which can longjump.  Do not change varobj value if
+       assign fails.
+       
 2000-11-06  Fernando Nasser  <fnasser@cygnus.com>
 
        From  Steven Johnson  <sbjohnson@ozemail.com.au>:
index fe3f940ae2a583393b3d3daed2fa55e15586bcaa..1ebf21c17e72419e9fba6a9f342c79ab4db8ff05 100644 (file)
@@ -818,7 +818,8 @@ varobj_set_value (struct varobj *var, char *expression)
        }
 
       VALUE_ADDRESS (temp) += offset;
-      val = value_assign (temp, value);
+      if (!gdb_value_assign (temp, value, &val))
+       return 0;
       VALUE_ADDRESS (val) -= offset;
       value_free (var->value);
       release_value (val);
index 60b259e011cbb17d2c4be559cba7e09e14190622..f8adff4fb2b343963d6303fffb5a71395bc3f33d 100644 (file)
@@ -50,6 +50,8 @@ static int wrap_value_fetch_lazy (char *);
 
 static int wrap_value_equal (char *);
 
+static int wrap_value_assign (char *);
+
 static int wrap_value_subscript (char *);
 
 static int wrap_value_ind (char *opaque_arg);
@@ -166,6 +168,42 @@ wrap_value_equal (char *a)
   return 1;
 }
 
+int
+gdb_value_assign (val1, val2, result)
+     value_ptr val1;
+     value_ptr val2;
+     value_ptr *result;
+{
+  struct gdb_wrapper_arguments args;
+
+  args.args[0].pointer = val1;
+  args.args[1].pointer = val2;
+
+  if (!catch_errors ((catch_errors_ftype *) wrap_value_assign, &args,
+                    "", RETURN_MASK_ERROR))
+    {
+      /* An error occurred */
+      return 0;
+    }
+
+  *result = (value_ptr) args.result.pointer;
+  return 1;
+}
+
+static int
+wrap_value_assign (a)
+     char *a;
+{
+  struct gdb_wrapper_arguments *args = (struct gdb_wrapper_arguments *) a;
+  value_ptr val1, val2;
+
+  val1 = (value_ptr) (args)->args[0].pointer;
+  val2 = (value_ptr) (args)->args[1].pointer;
+
+  (args)->result.pointer = value_assign (val1, val2);
+  return 1;
+}
+
 int
 gdb_value_subscript (value_ptr val1, value_ptr val2, value_ptr *rval)
 {
index 28261acb2fb31755335117f03ed4deacb1b9bdf3..85fc0b38b2aa27dd89a0509580f188ce1f335424 100644 (file)
@@ -31,6 +31,8 @@ extern int gdb_value_fetch_lazy (value_ptr);
 
 extern int gdb_value_equal (value_ptr, value_ptr, int *);
 
+extern int gdb_value_assign (value_ptr, value_ptr, value_ptr *);
+
 extern int gdb_value_subscript (value_ptr, value_ptr, value_ptr *);
 
 extern int gdb_value_ind (value_ptr val, value_ptr * rval);