Wed Apr 27 16:33:51 1994 Stan Shebs (shebs@andros.cygnus.com)
authorStan Shebs <shebs@codesourcery.com>
Wed, 27 Apr 1994 23:35:49 +0000 (23:35 +0000)
committerStan Shebs <shebs@codesourcery.com>
Wed, 27 Apr 1994 23:35:49 +0000 (23:35 +0000)
* 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
gdb/lynx-nat.c

index c71d3c0f204af8b0f148cf20b6bb4df33ff95422..8fc2eb2d5c1981721d02712620330c58b9fe2919 100644 (file)
@@ -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
index 394fd6883eef86b40a3a8abc17002ba3211b6a68..451b4f5154726577636b6065b1aa66f1284c0fc7 100644 (file)
@@ -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;
This page took 0.036345 seconds and 4 git commands to generate.