2009-08-21 Hui Zhu <teawater@gmail.com>

* record.c (record_wait): Change the argument of
	record_beneath_to_wait to options.
This commit is contained in:
Hui Zhu 2009-08-21 06:16:51 +00:00
parent 4493bff950
commit 90092760f3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-08-21 Hui Zhu <teawater@gmail.com>
* record.c (record_wait): Change the argument of
record_beneath_to_wait to options.
2009-08-20 Jacob Potter <jdpotter@google.com> 2009-08-20 Jacob Potter <jdpotter@google.com>
Replace dcache with splay tree. Replace dcache with splay tree.

View File

@ -598,7 +598,7 @@ record_wait (struct target_ops *ops,
{ {
/* This is a single step. */ /* This is a single step. */
return record_beneath_to_wait (record_beneath_to_wait_ops, return record_beneath_to_wait (record_beneath_to_wait_ops,
ptid, status, 0); ptid, status, options);
} }
else else
{ {
@ -609,7 +609,7 @@ record_wait (struct target_ops *ops,
while (1) while (1)
{ {
ret = record_beneath_to_wait (record_beneath_to_wait_ops, ret = record_beneath_to_wait (record_beneath_to_wait_ops,
ptid, status, 0); ptid, status, options);
if (status->kind == TARGET_WAITKIND_STOPPED if (status->kind == TARGET_WAITKIND_STOPPED
&& status->value.sig == TARGET_SIGNAL_TRAP) && status->value.sig == TARGET_SIGNAL_TRAP)