diff options
author | Pedro Alves <palves@redhat.com> | 2011-05-27 18:39:49 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-05-27 18:39:49 +0000 |
commit | 619cebe87fc24b0ca07054a7fd34c550648c417e (patch) | |
tree | ee9180e371a87e1c7bee7bf4323cde0643ff737c | |
parent | be34f8494e0befe68d8071f46edc16d9aa3c9238 (diff) | |
download | gdb-619cebe87fc24b0ca07054a7fd34c550648c417e.zip gdb-619cebe87fc24b0ca07054a7fd34c550648c417e.tar.gz gdb-619cebe87fc24b0ca07054a7fd34c550648c417e.tar.bz2 |
2011-05-27 Pedro Alves <pedro@codesourcery.com>
gdb/
* defs.h (struct thread_info, struct inferior): Delete forward
declarations.
* breakpoint.h (struct thread_info): New forward declaration.
* observer.sh (struct inferior): New forward declaration.
* python/python-internal.h (struct inferior): New forward
declaration.
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/breakpoint.h | 1 | ||||
-rw-r--r-- | gdb/defs.h | 3 | ||||
-rwxr-xr-x | gdb/observer.sh | 1 | ||||
-rw-r--r-- | gdb/python/python-internal.h | 1 |
5 files changed, 12 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b57fa08..83203a2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2011-05-27 Pedro Alves <pedro@codesourcery.com> + * defs.h (struct thread_info, struct inferior): Delete forward + declarations. + * breakpoint.h (struct thread_info): New forward declaration. + * observer.sh (struct inferior): New forward declaration. + * python/python-internal.h (struct inferior): New forward + declaration. + +2011-05-27 Pedro Alves <pedro@codesourcery.com> + * defs.h (struct continuation, continuation_ftype) (continuation_free_arg_ftype, add_continuation) (do_all_continuations, do_all_continuations_thread) diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 2050c6d..c7ec311 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -29,6 +29,7 @@ struct value; struct block; struct breakpoint_object; struct get_number_or_range_state; +struct thread_info; /* This is the maximum number of bytes a breakpoint instruction can take. Feel free to increase it. It's just used in a few places to @@ -730,9 +730,6 @@ extern struct command_line *read_command_lines_1 (char * (*) (void), int, extern void free_command_lines (struct command_line **); -struct thread_info; -struct inferior; - /* String containing the current directory (what getwd would return). */ extern char *current_directory; diff --git a/gdb/observer.sh b/gdb/observer.sh index ba8ba4e..e4d5e77 100755 --- a/gdb/observer.sh +++ b/gdb/observer.sh @@ -64,6 +64,7 @@ struct bpstats; struct so_list; struct objfile; struct thread_info; +struct inferior; EOF ;; esac diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index d3cb788..b65109d 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -106,6 +106,7 @@ struct value; struct language_defn; struct program_space; struct bpstats; +struct inferior; extern PyObject *gdb_module; extern PyTypeObject value_object_type; |