* nlm/gdbserve.c, nlm/ppc.c, nlm/ppc.h: Don't try to use

ALTERNATE_MEM_FUNCS.
This commit is contained in:
J.T. Conklin 1994-12-22 21:33:00 +00:00
parent 9b826d6df6
commit 67b1268238
3 changed files with 10 additions and 6 deletions

View File

@ -69,8 +69,9 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <ctype.h>
#include <errno.h>
#include <time.h>
#ifdef __i386__
#include <dfs.h>
@ -380,14 +381,14 @@ volatile int mem_err = 0;
to mem_fault, they won't get restored, so there better not be any
saved). */
static int
int
get_char (addr)
char *addr;
{
return *addr;
}
static void
void
set_char (addr, val)
char *addr;
int val;

View File

@ -61,12 +61,12 @@ registers_to_frame (regs, frame)
hex2mem (&regs[MQ_REGNUM * 4 * 2], &frame->ExceptionState.u.SpecialRegistersEnumerated.CsavedMQ, 4 * 1, 0);
}
extern int ReadByteAltDebugger (char* addr, char *theByte);
extern int WriteByteAltDebugger (char* addr, char theByte);
extern volatile int mem_err;
#ifdef ALTERNATE_MEM_FUNCS
extern int ReadByteAltDebugger (char* addr, char *theByte);
extern int WriteByteAltDebugger (char* addr, char theByte);
int
get_char (addr)
char *addr;
@ -87,6 +87,7 @@ set_char (addr, val)
if (!WriteByteAltDebugger (addr, val))
mem_err = 1;
}
#endif
int
mem_write (dst, src, len)

View File

@ -157,7 +157,9 @@ struct StackFrame
extern unsigned char breakpoint_insn[];
#define BREAKPOINT_SIZE 4
#if 0
#define ALTERNATE_MEM_FUNCS /* We need our own get_char/set_char */
#endif
extern int get_char (char *addr);
extern void set_char (char *addr, int val);