From: Stan Shebs Date: Wed, 27 Apr 1994 23:35:49 +0000 (+0000) Subject: Wed Apr 27 16:33:51 1994 Stan Shebs (shebs@andros.cygnus.com) X-Git-Tag: gdb-4_18~14682 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa175216560f173b2b3d5aebde51f8d9f026ebc4;p=external%2Fbinutils.git 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. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c71d3c0..8fc2eb2 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 394fd68..451b4f5 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;