From aa175216560f173b2b3d5aebde51f8d9f026ebc4 Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Wed, 27 Apr 1994 23:35:49 +0000 Subject: [PATCH] Wed Apr 27 16:33:51 1994 Stan Shebs (shebs@andros.cygnus.com) * lynx-nat.c (CANNOT_STORE_REGISTER): Add a fallback definition for Lynx platforms that need it. * config/nm-lynx.h (__LYNXOS): Define if not already defined. --- gdb/ChangeLog | 6 ++++++ gdb/lynx-nat.c | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c71d3c0f204..8fc2eb2d5c1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Wed Apr 27 16:33:51 1994 Stan Shebs (shebs@andros.cygnus.com) + + * lynx-nat.c (CANNOT_STORE_REGISTER): Add a fallback definition + for Lynx platforms that need it. + * config/nm-lynx.h (__LYNXOS): Define if not already defined. + Wed Apr 27 16:01:37 1994 Jim Kingdon (kingdon@cygnus.com) * procfs.c (procfs_wait): Use the signal from the pr_info rather diff --git a/gdb/lynx-nat.c b/gdb/lynx-nat.c index 394fd6883ee..451b4f51547 100644 --- a/gdb/lynx-nat.c +++ b/gdb/lynx-nat.c @@ -537,6 +537,11 @@ fetch_inferior_registers (regno) If REGNO is -1, do this for all registers. Otherwise, REGNO specifies which register (so we can save time). */ +/* Registers we shouldn't try to store. */ +#if !defined (CANNOT_STORE_REGISTER) +#define CANNOT_STORE_REGISTER(regno) 0 +#endif + void store_inferior_registers (regno) int regno; -- 2.30.2