diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-04-27 23:35:49 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-04-27 23:35:49 +0000 |
commit | aa175216560f173b2b3d5aebde51f8d9f026ebc4 (patch) | |
tree | bbfa5719d9424f99203f1360b8a15d5bfc206758 /gdb | |
parent | 890634eda79caf70305274a7169e6ff08fff4125 (diff) | |
download | gdb-aa175216560f173b2b3d5aebde51f8d9f026ebc4.zip gdb-aa175216560f173b2b3d5aebde51f8d9f026ebc4.tar.gz gdb-aa175216560f173b2b3d5aebde51f8d9f026ebc4.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/lynx-nat.c | 5 |
2 files changed, 11 insertions, 0 deletions
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; |