This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH v2 4/7] Adds support for recording system call instructions
- From: Pedro Alves <palves at redhat dot com>
- To: Omair Javaid <omair dot javaid at linaro dot org>
- Cc: gdb-patches at sourceware dot org, patches at linaro dot org
- Date: Thu, 09 Jan 2014 17:14:46 +0000
- Subject: Re: [PATCH v2 4/7] Adds support for recording system call instructions
- Authentication-results: sourceware.org; auth=none
- References: <y> <cover dot 1388709773 dot git dot omair dot javaid at linaro dot org> <a075cf819247b830e177a679b9fee17578fec22b dot 1388709773 dot git dot omair dot javaid at linaro dot org> <52CB0960 dot 3000101 at redhat dot com> <52CE7EB7 dot 7000806 at linaro dot org>
On 01/09/2014 10:49 AM, Omair Javaid wrote:
> 2014-01-09 Omair Javaid <omair.javaid@linaro.org>
> ...
> * configure.tgt: Add linux-record.o to gdb_target_obs.
Should mention which target got that:
* configure.tgt (arm*-*-linux*): Add linux-record.o to
gdb_target_obs.
> + if (syscall <= gdb_sys_sched_getaffinity)
> + return syscall;
> + else if (syscall >= 243 && syscall <= 247 )
> + return syscall + 2;
> + else if (syscall >= 248 && syscall <= 253 )
Spurious spaces before ).
Otherwise OK, please push.
Thanks,
--
Pedro Alves