* serial.h: Fix prototye for serial_raw().
[deliverable/binutils-gdb.git] / gdb / xm-mips.h
index caebda5e5f3d50d8760e1f2bf31107d7d1b358bc..1318bba60b433baafe47c9b4b1413deafa26dfd1 100644 (file)
@@ -23,25 +23,30 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define HOST_BYTE_ORDER LITTLE_ENDIAN
 #endif
 
-/* wait.h */
-#define HAVE_WAIT_STRUCT
-
 /* Get rid of any system-imposed stack limit if possible */
 
 #define        SET_STACK_LIMIT_HUGE
 
-/* This WOULD BE the amount to subtract from u.u_ar0
-   to get the offset in the core file of the register values.
-   But Mips' ptrace works on regnums, not displacements */
+#define KERNEL_U_ADDR 0 /* Not needed. */
+
+#ifdef ultrix
+extern char *strdup();
+#endif
+
+/* DECstation memcpy and memset return void *, not char *.  */
 
-#define KERNEL_U_ADDR (int)u.u_ar0
+extern void *memcpy();
+extern void *memset();
+#define        MEM_FNS_DECLARED
+
+/* Only used for core files on DECstations. */
+
+#define REGISTER_U_ADDR(addr, blockend, regno)                 \
+       if (regno < 38) addr = (NBPG*UPAGES) + (regno - 38)*sizeof(int);\
+       else addr = 0; /* ..somewhere in the pcb */
 
 /* Override copies of {fetch,store}_inferior_registers in infptrace.c.  */
 #define FETCH_INFERIOR_REGISTERS
 
 /* Kernel is a bit tenacious about sharing text segments, disallowing bpts.  */
 #define        ONE_PROCESS_WRITETEXT
-\f
-/* Interface definitions for kernel debugger KDB */
-
-/* I am not going to pretend I've done anything about this */
This page took 0.023536 seconds and 4 git commands to generate.