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.
This commit is contained in:
parent
890634eda7
commit
aa17521656
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue