summaryrefslogtreecommitdiff
path: root/gdb/event-top.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2002-06-21 00:13:54 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2002-06-21 00:13:54 +0000
commit87c4a0399d1fe2d5b1127c207bc7b3facd0c3233 (patch)
treea6cda79b10aa71b1beede9e1596fa2bd4dc77261 /gdb/event-top.c
parenta2a75bff9ffa797516e231ebf664f70a2f12b0ee (diff)
downloadbinutils-gdb-87c4a0399d1fe2d5b1127c207bc7b3facd0c3233.tar.gz
2002-06-20 Elena Zannoni <ezannoni@redhat.com>
* event-top.c (command_handler): Don't use space_at_cmd_start unless there is sbrk() on the host. Assign time and space data to union fields of the appropriate length.
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r--gdb/event-top.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c
index b472694a347..823a3e1f68d 100644
--- a/gdb/event-top.c
+++ b/gdb/event-top.c
@@ -514,8 +514,10 @@ command_handler (char *command)
(struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
arg1->next = arg2;
arg2->next = NULL;
- arg1->data.integer = time_at_cmd_start;
- arg2->data.integer = space_at_cmd_start;
+ arg1->data.longint = time_at_cmd_start;
+#ifdef HAVE_SBRK
+ arg2->data.longint = space_at_cmd_start;
+#endif
add_continuation (command_line_handler_continuation, arg1);
}