diff options
author | Pedro Alves <palves@redhat.com> | 2015-08-07 17:23:59 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-08-07 17:23:59 +0100 |
commit | 8b0615634896718c982d367a01ec61120084d3fb (patch) | |
tree | 8c8f8b127f11fbd7025539e53e15cd150a5e496f /gdb/target.h | |
parent | 1afd5965eda86caed3af7f23fd1f8802831360b6 (diff) | |
download | gdb-8b0615634896718c982d367a01ec61120084d3fb.zip gdb-8b0615634896718c982d367a01ec61120084d3fb.tar.gz gdb-8b0615634896718c982d367a01ec61120084d3fb.tar.bz2 |
Add comments to currently_stepping and target_resume
Clarify that currently_stepping works at a higher level than
target_resume.
gdb/ChangeLog:
2015-08-07 Pedro Alves <palves@redhat.com>
* infrun.c (currently_stepping): Extend intro comment.
* target.h (target_resume): Extend intro comment.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h index 462c0de..d616798 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1292,8 +1292,8 @@ extern void target_detach (const char *, int); extern void target_disconnect (const char *, int); /* Resume execution of the target process PTID (or a group of - threads). STEP says whether to single-step or to run free; SIGGNAL - is the signal to be given to the target, or GDB_SIGNAL_0 for no + threads). STEP says whether to hardware single-step or to run free; + SIGGNAL is the signal to be given to the target, or GDB_SIGNAL_0 for no signal. The caller may not pass GDB_SIGNAL_DEFAULT. A specific PTID means `step/resume only this process id'. A wildcard PTID (all threads, or all threads of process) means `step/resume |