mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 17:18:24 +08:00
2009-08-31 Hui Zhu <teawater@gmail.com>
* record.c (record_resume_siggnal): Deleted. (record_resume): Ditto. (record_wait): Change record_resume_siggnal to TARGET_SIGNAL_0.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2009-09-01 Hui Zhu <teawater@gmail.com>
|
||||||
|
|
||||||
|
* record.c (record_resume_siggnal): Deleted.
|
||||||
|
(record_resume): Ditto.
|
||||||
|
(record_wait): Change record_resume_siggnal to
|
||||||
|
TARGET_SIGNAL_0.
|
||||||
|
|
||||||
2009-08-31 Jacob Potter <jdpotter@google.com>
|
2009-08-31 Jacob Potter <jdpotter@google.com>
|
||||||
Doug Evans <dje@google.com>
|
Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
@ -514,7 +514,6 @@ record_close (int quitting)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int record_resume_step = 0;
|
static int record_resume_step = 0;
|
||||||
static enum target_signal record_resume_siggnal;
|
|
||||||
static int record_resume_error;
|
static int record_resume_error;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -522,7 +521,6 @@ record_resume (struct target_ops *ops, ptid_t ptid, int step,
|
|||||||
enum target_signal siggnal)
|
enum target_signal siggnal)
|
||||||
{
|
{
|
||||||
record_resume_step = step;
|
record_resume_step = step;
|
||||||
record_resume_siggnal = siggnal;
|
|
||||||
|
|
||||||
if (!RECORD_IS_REPLAY)
|
if (!RECORD_IS_REPLAY)
|
||||||
{
|
{
|
||||||
@ -638,7 +636,7 @@ record_wait (struct target_ops *ops,
|
|||||||
}
|
}
|
||||||
record_beneath_to_resume (record_beneath_to_resume_ops,
|
record_beneath_to_resume (record_beneath_to_resume_ops,
|
||||||
ptid, 1,
|
ptid, 1,
|
||||||
record_resume_siggnal);
|
TARGET_SIGNAL_0);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user