* config/mips/nm-riscos.h: machine/machparam.h is always the right

place to look for BSD43_NBPG, not machine/vmparam.h
This commit is contained in:
Jim Kingdon 1993-07-08 03:58:39 +00:00
parent e7ff735c89
commit 3206db6299
2 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,8 @@
Wed Jul 7 14:30:00 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config/mips/nm-riscos.h: machine/machparam.h is always the right
place to look for BSD43_NBPG, not machine/vmparam.h
* infcmd.c (run_stack_dummy): New argument name.
Change error message in (another) attempt to make it comprehensible.
* valops.c (call_function_by_hand): Pass name to run_stack_dummy.

View file

@ -16,13 +16,15 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define PCB_OFFSET(FIELD) ((int)&((struct user*)0)->u_pcb.FIELD)
#include <bsd43/machine/vmparam.h>
#ifndef BSD43_NBPG
/* RISC/os 5.0 defines this in machparam.h. */
#include <bsd43/machine/machparam.h>
#endif
#define NBPG BSD43_NBPG
#define UPAGES BSD43_UPAGES
/* Where is this used? I don't see any uses in mips-nat.c, and I don't think
the uses in infptrace.c are used if FETCH_INFERIOR_REGISTERS is defined.
Does the compiler react badly to "extern CORE_ADDR kernel_u_addr" (even
if never referenced)? */
#define KERNEL_U_ADDR BSD43_UADDR
#define REGISTER_U_ADDR(addr, blockend, regno) \