diff options
author | Michael Snyder <msnyder@vmware.com> | 2009-09-08 22:50:59 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2009-09-08 22:50:59 +0000 |
commit | 13b6d1d459210ab9ad250fc24df977bb1b178a3a (patch) | |
tree | f7b5981493bf455e986bcd1739d8896ae2084a35 /gdb/ChangeLog | |
parent | 6a89f575aaaf6f183620a91507e965205429a54a (diff) | |
download | fsf-binutils-gdb-13b6d1d459210ab9ad250fc24df977bb1b178a3a.zip fsf-binutils-gdb-13b6d1d459210ab9ad250fc24df977bb1b178a3a.tar.gz fsf-binutils-gdb-13b6d1d459210ab9ad250fc24df977bb1b178a3a.tar.bz2 |
2009-09-08 Michael Snyder <msnyder@vmware.com>
* amd64-linux-tdep.h (enum amd64_syscall): New enum consts,
to replace literal consts used in amd64-linux-tdep.c
* linux-record.h (enum gdb_syscall): New enum consts, to replace
literal consts used in amd64-linux-tdep.c and linux-record.c.
* amd64-linux-tdep.c (amd64_canonicalize_syscall): New function,
translate from native amd64 Linux syscall id to internal gdb id.
(amd64_linux_syscall_record): Switch statement abstracted out
and replaced with a call to amd64_canonicalize_syscall.
* linux-record.c (record_linux_system_call): Replace literal
consts with enum consts.
* i386-linux-tdep.c (i386_canonicalize_syscall): New function,
trivially translate from native i386 Linux syscalls to gdb syscalls.
(i386_linux_intx80_sysenter_record):
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5952811..21500ec 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,19 @@ +2009-09-08 Michael Snyder <msnyder@vmware.com> + + * amd64-linux-tdep.h (enum amd64_syscall): New enum consts, + to replace literal consts used in amd64-linux-tdep.c + * linux-record.h (enum gdb_syscall): New enum consts, to replace + literal consts used in amd64-linux-tdep.c and linux-record.c. + * amd64-linux-tdep.c (amd64_canonicalize_syscall): New function, + translate from native amd64 Linux syscall id to internal gdb id. + (amd64_linux_syscall_record): Switch statement abstracted out + and replaced with a call to amd64_canonicalize_syscall. + * linux-record.c (record_linux_system_call): Replace literal + consts with enum consts. + * i386-linux-tdep.c (i386_canonicalize_syscall): New function, + trivially translate from native i386 Linux syscalls to gdb syscalls. + (i386_linux_intx80_sysenter_record): + 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * gdb/Makefile.in (check//%): Parse 'config.status --version' |