diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-15 04:26:06 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-15 04:26:06 +0000 |
commit | 5d76c8e66273baf43bfee19c3341e605d4a09ad8 (patch) | |
tree | 5db705f610608b293aed609977860b76ae5b272b /gdb/config/i386 | |
parent | 8c4731b588620a52771117864c29f4ab1b6bc892 (diff) | |
download | gdb-5d76c8e66273baf43bfee19c3341e605d4a09ad8.zip gdb-5d76c8e66273baf43bfee19c3341e605d4a09ad8.tar.gz gdb-5d76c8e66273baf43bfee19c3341e605d4a09ad8.tar.bz2 |
* fork-child.c (fork_inferior), remote-eb.c (eb_create_inferior),
remote-mon.c (monitor_create_inferior), remote-nindy.c
(nindy_create_inferior), remote-st.c (st2000_create_inferior),
remote-vx.c (vx_create_inferior): Remove CREATE_INFERIOR_HOOK; it
is replaced by init_trace_fun.
* config/convex/xm-convex.h, convex-xdep.c: Add comments explaining
how to do without CREATE_INFERIOR_HOOK for whoever fixes the Convex
port.
* Makefile.in: Add Mach files to ALLDEPFILES, etc.
* m3-nat.c: Clean up more hair--message(), cprocs.
* configure.in: Recognize Mach targets and hosts.
* config/ns32k/tm-umax.h: Add some #ifndef's so tm-ns32km3.h can
include this file.
* Mach headers in config/*/tm-*.h: Fix includes to match correct
locations of files.
Diffstat (limited to 'gdb/config/i386')
-rw-r--r-- | gdb/config/i386/tm-i386m3.h | 7 | ||||
-rw-r--r-- | gdb/config/i386/tm-i386mk.h | 2 |
2 files changed, 3 insertions, 6 deletions
diff --git a/gdb/config/i386/tm-i386m3.h b/gdb/config/i386/tm-i386m3.h index 0c70930..f05081c 100644 --- a/gdb/config/i386/tm-i386m3.h +++ b/gdb/config/i386/tm-i386m3.h @@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Include common definitions for Mach3 systems */ -#include "os-mach3.h" +#include "nm-m3.h" /* Define offsets to access CPROC stack when it does not have * a kernel thread. @@ -57,15 +57,12 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define NAMES_HAVE_UNDERSCORE /* Sigh. There should be a file for i386 but no sysv stuff in it */ -#include "tm-i386v.h" +#include "i386/tm-i386v.h" /* I want to test this float info code. See comment in tm-i386v.h */ #undef FLOAT_INFO #define FLOAT_INFO { i386_mach3_float_info (); } -/* We use a.out format */ -#undef COFF_NO_LONG_FILE_NAMES - /* Address of end of stack space. * for MACH, see <machine/vmparam.h> * @@@ I don't know what is in the 5 ints... diff --git a/gdb/config/i386/tm-i386mk.h b/gdb/config/i386/tm-i386mk.h index 8035433..3bbb2e0 100644 --- a/gdb/config/i386/tm-i386mk.h +++ b/gdb/config/i386/tm-i386mk.h @@ -22,4 +22,4 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ */ #define MK67 1 -#include "tm-i386mach3.h" +#include "i386/tm-i386m3.h" |