1 /* Native-dependent definitions for LynxOS.
2 Copyright 1993 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 2 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, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 #include <sys/kernel.h>
26 /* sys/kernel.h should define this, but doesn't always, sigh. */
31 #include <sys/signal.h>
33 #include <sys/resource.h>
34 #include <sys/itimer.h>
37 #include "gdbthread.h"
39 /* This is the amount to subtract from u.u_ar0 to get the offset in
40 the core file of the register values. */
42 #define KERNEL_U_ADDR USRSTACK
44 #undef FLOAT_INFO /* No float info yet */
46 /* As of LynxOS 2.2.2 (beta 8/15/94), this is int. Previous versions seem to
47 have had no prototype, so I'm not sure why GDB used to define this to
49 #define PTRACE_ARG3_TYPE int
51 /* Override copies of {fetch,store}_inferior_registers in infptrace.c. */
53 #define FETCH_INFERIOR_REGISTERS
55 /* Thread ID of stopped thread. */
57 #define WIFTID(x) (((union wait *)&x)->w_tid)
59 /* Override child_wait in inftarg.c */
63 /* Override child_resume in infptrace.c */
67 /* Override child_thread_alive in intarg.c */
69 #define CHILD_THREAD_ALIVE
73 extern int child_wait PARAMS ((int pid, struct target_waitstatus * status));
75 /* Lynx needs a special definition of this so that we can
76 print out the pid and thread number seperatly. */
78 #undef target_pid_to_str
80 #define target_pid_to_str(PID) lynx_pid_to_str (PID)
82 extern char *lynx_pid_to_str PARAMS ((int pid));
84 #endif /* NM_LYNX_H */