]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/i386obsd-nat.c
* sparcobsd-tdep.c: Fix typo.
[thirdparty/binutils-gdb.git] / gdb / i386obsd-nat.c
CommitLineData
baadce09 1/* Native-dependent code for OpenBSD/i386.
5d93ae8c 2
197e01b6 3 Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
baadce09
MK
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
baadce09
MK
21
22#include "defs.h"
23
24#include <sys/param.h>
25#include <sys/sysctl.h>
26
e2dbbd2d
MK
27#include "i386-tdep.h"
28
baadce09 29/* Prevent warning from -Wmissing-prototypes. */
e5e4acad 30void _initialize_i386obsd_nat (void);
baadce09
MK
31
32void
33_initialize_i386obsd_nat (void)
34{
35 /* OpenBSD provides a vm.psstrings sysctl that we can use to locate
36 the sigtramp. That way we can still recognize a sigtramp if its
37 location is changed in a new kernel. This is especially
38 important for OpenBSD, since it uses a different memory layout
39 than NetBSD, yet we cannot distinguish between the two.
40
41 Of course this is still based on the assumption that the sigtramp
42 is placed directly under the location where the program arguments
43 and environment can be found. */
44#ifdef VM_PSSTRINGS
45 {
46 struct _ps_strings _ps;
47 int mib[2];
48 size_t len;
49
baadce09
MK
50 mib[0] = CTL_VM;
51 mib[1] = VM_PSSTRINGS;
52 len = sizeof (_ps);
53 if (sysctl (mib, 2, &_ps, &len, NULL, 0) == 0)
54 {
57ac95b8
MK
55 i386obsd_sigtramp_start_addr = (u_long) _ps.val - 128;
56 i386obsd_sigtramp_end_addr = (u_long) _ps.val;
baadce09
MK
57 }
58 }
59#endif
60}