This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 2/2] Create gdb/break-catch-syscall.c


Sergio Durigan Junior <sergiodj@redhat.com> writes:

Hi Sergio,
Thanks for doing this.

> Tested by running the 'gdb.base/catch-syscall.exp' testcase.
>

Could you please run the whole testsuite?  it shouldn't take much time.
If it is regression free, the patch is fine by me, with the following
typo fixed,

> gdb/ChangeLog:
> 2015-03-10  Sergio Durigan Junior  <sergiodj@redhat.com>
>
> 	* Makefile.in (SFILES): New object break-catch-syscall.o.

It should be break-catch-syscall.c

> 	(COMMON_OBS): Likewise.
> 	* break-catch-syscall.c: New file.
> 	* breakpoint.c: Remove inclusion of "xml-syscall.h".
> 	(syscall_catchpoint_p): Move declaration to break-catch-syscall.c
> 	(struct syscall_catchpoint): Likewise.
> 	(dtor_catch_syscall): Likewise.
> 	(catch_syscall_inferior_data): Likewise.
> 	(struct catch_syscall_inferior_data): Likewise.
> 	(get_catch_syscall_inferior_data): Likewise.
> 	(catch_syscall_inferior_data_cleanup): Likewise.
> 	(insert_catch_syscall): Likewise.
> 	(remove_catch_syscall): Likewise.
> 	(breakpoint_hit_catch_syscall): Likewise.
> 	(print_it_catch_syscall): Likewise.
> 	(print_one_catch_syscall): Likewise.
> 	(print_mention_catch_syscall): Likewise.
> 	(print_recreate_catch_syscall): Likewise.
> 	(catch_syscall_breakpoint_ops): Likewise.
> 	(syscall_catchpoint_p): Likewise.
> 	(create_syscall_event_catchpoint): Likewise.
> 	(catch_syscall_split_args): Likewise.
> 	(catch_syscall_command_1): Likewise.
> 	(is_syscall_catchpoint_enabled): Likewise.
> 	(catch_syscall_enabled): Likewise.
> 	(catching_syscall_number): Likewise.
> 	(catch_syscall_completer): Likewise.
> 	(clear_syscall_counts): Likewise.
> 	(initialize_breakpoint_ops): Move initialization of syscall
> 	catchpoints to break-catch-syscall.c.
> 	(_initialize_breakpoint): Move code related to syscall catchpoints
> 	to break-catch-syscall.c.
> ---
>  gdb/Makefile.in           |   2 +
>  gdb/break-catch-syscall.c | 659 ++++++++++++++++++++++++++++++++++++++++++++++
>  gdb/breakpoint.c          | 600 -----------------------------------------
>  3 files changed, 661 insertions(+), 600 deletions(-)
>  create mode 100644 gdb/break-catch-syscall.c
>
> diff --git a/gdb/Makefile.in b/gdb/Makefile.in
> index 8c2a4de..f59ad66 100644
> --- a/gdb/Makefile.in
> +++ b/gdb/Makefile.in
> @@ -816,6 +816,7 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
>  	bfd-target.c \
>  	block.c blockframe.c \
>  	breakpoint.c break-catch-sig.c break-catch-throw.c \
> +	break-catch-syscall.o \

Likewise.

>  	build-id.c buildsym.c \
>  	c-exp.y c-lang.c c-typeprint.c c-valprint.c c-varobj.c \
>  	charset.c common/cleanups.c cli-out.c coffread.c coff-pe-read.c \

-- 
Yao (éå)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]