e67ec1dc9cb59df5f765c839dc8668e461bd0dda
[binutils-gdb.git] / gdb / config / i386 / nm-i386lynx.h
1 /* Native-dependent definitions for Intel 386 running Lynx, for GDB.
2 Copyright 1986, 1987, 1989, 1992 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
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 2 of the License, or
9 (at your option) any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #ifndef NM_I386LYNX_H
21 #define NM_I386LYNX_H
22
23 #include <sys/conf.h>
24 #include <sys/kernel.h>
25 #include <sys/mem.h>
26 #include <sys/signal.h>
27 #include <sys/time.h>
28 #include <sys/resource.h>
29 #include <sys/itimer.h>
30 #include <sys/file.h>
31 #include <sys/proc.h>
32 #include "thread.h"
33
34 /* This is the amount to subtract from u.u_ar0
35 to get the offset in the core file of the register values. */
36
37 #define KERNEL_U_ADDR USRSTACK
38
39 #undef FLOAT_INFO /* No float info yet */
40
41 #define REGISTER_U_ADDR(addr, blockend, regno) \
42 (addr) = i386_register_u_addr ((blockend),(regno));
43
44 extern int
45 i386_register_u_addr PARAMS ((int, int));
46
47 #define PTRACE_ARG3_TYPE char*
48
49 /* Override copies of {fetch,store}_inferior_registers in infptrace.c. */
50 #define FETCH_INFERIOR_REGISTERS
51
52 /* Thread ID of stopped thread */
53
54 #define WIFTID(x) (((union wait *)&x)->w_tid)
55
56 #define CHILD_WAIT
57 extern int child_wait PARAMS ((int *status));
58
59 /* Lynx needs a special definition of this so that we can
60 print out the pid and thread number seperatly. */
61
62 #undef target_pid_to_str
63
64 #define target_pid_to_str(PID) \
65 i386lynx_pid_to_str (PID)
66 extern char *i386lynx_pid_to_str PARAMS ((int pid));
67
68 #endif /* NM_I386LYNX_H */