]>
Commit | Line | Data |
---|---|---|
92d47a66 SG |
1 | /* Native-dependent definitions for LynxOS. |
2 | Copyright 1993 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_LYNX_H | |
21 | #define NM_LYNX_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 to get the offset in | |
35 | 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 PTRACE_ARG3_TYPE char * | |
42 | ||
43 | /* Override copies of {fetch,store}_inferior_registers in infptrace.c. */ | |
44 | ||
45 | #define FETCH_INFERIOR_REGISTERS | |
46 | ||
47 | /* Thread ID of stopped thread. */ | |
48 | ||
49 | #define WIFTID(x) (((union wait *)&x)->w_tid) | |
50 | ||
51 | #define CHILD_WAIT | |
52 | ||
53 | extern int child_wait PARAMS ((int pid, int *status)); | |
54 | ||
55 | /* Lynx needs a special definition of this so that we can | |
56 | print out the pid and thread number seperatly. */ | |
57 | ||
58 | #undef target_pid_to_str | |
59 | ||
60 | #define target_pid_to_str(PID) lynx_pid_to_str (PID) | |
61 | ||
62 | extern char *lynx_pid_to_str PARAMS ((int pid)); | |
63 | ||
64 | #endif /* NM_LYNX_H */ |