2009-09-01 Hui Zhu <teawater@gmail.com>

* record.c (record_resume): Change "siggnal" to "signal".
This commit is contained in:
Hui Zhu
2009-09-01 11:41:41 +00:00
parent 83ee431c60
commit 14c6ee207a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-09-01 Hui Zhu <teawater@gmail.com>
* record.c (record_resume): Change "siggnal" to "signal".
2009-09-01 Hui Zhu <teawater@gmail.com> 2009-09-01 Hui Zhu <teawater@gmail.com>
* record.c (record_resume_siggnal): Deleted. * record.c (record_resume_siggnal): Deleted.

View File

@ -518,7 +518,7 @@ static int record_resume_error;
static void static void
record_resume (struct target_ops *ops, ptid_t ptid, int step, record_resume (struct target_ops *ops, ptid_t ptid, int step,
enum target_signal siggnal) enum target_signal signal)
{ {
record_resume_step = step; record_resume_step = step;
@ -534,7 +534,7 @@ record_resume (struct target_ops *ops, ptid_t ptid, int step,
return; return;
} }
record_beneath_to_resume (record_beneath_to_resume_ops, ptid, 1, record_beneath_to_resume (record_beneath_to_resume_ops, ptid, 1,
siggnal); signal);
} }
} }