diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2018-07-11 10:41:55 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2018-08-09 19:23:43 +0100 |
commit | aff4e1751ffeae9684b80d5f528ee07bac34a5f8 (patch) | |
tree | 37af036e3628f6c4c4480c9a81ca385cdd4cf2b6 /gdb/infrun.h | |
parent | 06ab921988f5dfd64630a0b92d05dd94792e0a08 (diff) | |
download | fsf-binutils-gdb-aff4e1751ffeae9684b80d5f528ee07bac34a5f8.zip fsf-binutils-gdb-aff4e1751ffeae9684b80d5f528ee07bac34a5f8.tar.gz fsf-binutils-gdb-aff4e1751ffeae9684b80d5f528ee07bac34a5f8.tar.bz2 |
gdb: Make infrun.c:resume function static
Make the infrun.c:resume function static, and update the header
comment on the infrun.c:proceed function. There should be no user
visible change after this commit.
gdb/ChangeLog:
* infrun.c (resume): Make static, add forward declaration.
(proceed): Update header comment.
* infrun.h (resume): Delete declaration.
Diffstat (limited to 'gdb/infrun.h')
-rw-r--r-- | gdb/infrun.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/infrun.h b/gdb/infrun.h index 5820296..a701f0c 100644 --- a/gdb/infrun.h +++ b/gdb/infrun.h @@ -83,10 +83,6 @@ extern void clear_proceed_status (int step); extern void proceed (CORE_ADDR, enum gdb_signal); -/* The `resume' routine should only be called in special circumstances. - Normally, use `proceed', which handles a lot of bookkeeping. */ -extern void resume (enum gdb_signal); - /* Return a ptid representing the set of threads that we will proceed, in the perspective of the user/frontend. We may actually resume fewer threads at first, e.g., if a thread is stopped at a |