mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-11 06:04:12 +00:00
51433e4b6a
(amd64_linux_supply_gregset): Renamed from x86_64_linux_supply_gresget. (amd64_linux_fill_gregset): Renamed from x86_64_linux_fill_gregset. (fetch_core_registers): Adjust for renamed functions. (amd64_core_fns): Renamed from x86_64_core_fns. (amd64_linux_sigtramp_start): Renamed from x86_64_linux_sigtramp_start. (amd64_linux_pc_in_sigtramp): Renamed from x86_64_linux_pc_in_sigtramp. Adjust for renamed functions. (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET. (amd64_linux_sigcontext_addr): Renamed from x86_64_linux_sigcontext_addr. (amd64_linux_sc_reg_offset): Renamed from x86_64_linux_sc_reg_offset. (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi. Adjust for renamed functions and variables. (_initialize_amd64_linux_tdep): Renamed from _initialize_x86_64_linux_tdep. Adjust for renamed functions and variables. * x86-64-linux-tdep.h: Update copyright year. Tweak comment. Adjust for renamed functions.
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
/* Target-dependent definitions for GNU/Linux x86-64.
|
|
|
|
Copyright 2003, 2004 Free Software Foundation, Inc.
|
|
|
|
Contributed by Michal Ludvig, SuSE AG.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef X86_64_LINUX_TDEP_H
|
|
#define X86_64_LINUX_TDEP_H
|
|
|
|
/* Fill GDB's register array with the general-purpose register values
|
|
in *GREGSETP. */
|
|
|
|
void amd64_linux_supply_gregset (char *regp);
|
|
|
|
/* Fill register REGNO (if it is a general-purpose register) in
|
|
*GREGSETPS with the value in GDB's register array. If REGNO is -1,
|
|
do this for all registers. */
|
|
|
|
void amd64_linux_fill_gregset (char *regp, int regno);
|
|
|
|
#endif /* x86-64-linux-tdep.h */
|