gdb, testsuite: Fix return value in gdb.base/foll-fork.exp
[binutils-gdb.git] / gdb / sparc-linux-nat.c
blob0b3a6925610927496bb4698011b57044372e955b
1 /* Native-dependent code for GNU/Linux SPARC.
2 Copyright (C) 2005-2024 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "regcache.h"
21 #include <sys/procfs.h>
22 #include "gregset.h"
24 #include "sparc-tdep.h"
25 #include "sparc-nat.h"
26 #include "inferior.h"
27 #include "target.h"
28 #include "linux-nat.h"
30 class sparc_linux_nat_target final : public linux_nat_target
32 public:
33 /* Add our register access methods. */
34 void fetch_registers (struct regcache *regcache, int regnum) override
35 { sparc_fetch_inferior_registers (this, regcache, regnum); }
37 void store_registers (struct regcache *regcache, int regnum) override
38 { sparc_store_inferior_registers (this, regcache, regnum); }
41 static sparc_linux_nat_target the_sparc_linux_nat_target;
43 void
44 supply_gregset (struct regcache *regcache, const prgregset_t *gregs)
46 sparc32_supply_gregset (sparc_gregmap, regcache, -1, gregs);
49 void
50 supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs)
52 sparc32_supply_fpregset (sparc_fpregmap, regcache, -1, fpregs);
55 void
56 fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum)
58 sparc32_collect_gregset (sparc_gregmap, regcache, regnum, gregs);
61 void
62 fill_fpregset (const struct regcache *regcache,
63 prfpregset_t *fpregs, int regnum)
65 sparc32_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs);
68 void _initialize_sparc_linux_nat ();
69 void
70 _initialize_sparc_linux_nat ()
72 sparc_fpregmap = &sparc32_bsd_fpregmap;
74 /* Register the target. */
75 linux_target = &the_sparc_linux_nat_target;
76 add_inf_child_target (&the_sparc_linux_nat_target);