mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 04:43:17 +08:00
2004-07-29 Andrew Cagney <cagney@gnu.org>
* config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ... * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2004-07-29 Andrew Cagney <cagney@gnu.org>
|
2004-07-29 Andrew Cagney <cagney@gnu.org>
|
||||||
|
|
||||||
|
* config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
|
||||||
|
* config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
|
||||||
|
|
||||||
* config/xm-nbsd.h: Delete file.
|
* config/xm-nbsd.h: Delete file.
|
||||||
* config/arm/xm-nbsd.h: Delete file.
|
* config/arm/xm-nbsd.h: Delete file.
|
||||||
* config/i386/xm-nbsd.h: Delete file.
|
* config/i386/xm-nbsd.h: Delete file.
|
||||||
|
@ -45,3 +45,10 @@ extern int procfs_stopped_by_watchpoint (ptid_t);
|
|||||||
extern int procfs_set_watchpoint (ptid_t, CORE_ADDR, int, int, int);
|
extern int procfs_set_watchpoint (ptid_t, CORE_ADDR, int, int, int);
|
||||||
|
|
||||||
#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(SIZE) 1
|
#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(SIZE) 1
|
||||||
|
|
||||||
|
/* Override register locations in upage for SGI machines */
|
||||||
|
#define REGISTER_U_ADDR(addr, blockend, regno) \
|
||||||
|
if (regno < PC_REGNUM) \
|
||||||
|
addr = regno; \
|
||||||
|
else \
|
||||||
|
addr = regno + NSIG_HNDLRS; /* Skip over signal handlers */
|
||||||
|
@ -21,14 +21,6 @@
|
|||||||
|
|
||||||
#include "config/xm-sysv4.h"
|
#include "config/xm-sysv4.h"
|
||||||
|
|
||||||
/* Override register locations in upage for SGI machines */
|
|
||||||
#undef REGISTER_U_ADDR
|
|
||||||
#define REGISTER_U_ADDR(addr, blockend, regno) \
|
|
||||||
if (regno < PC_REGNUM) \
|
|
||||||
addr = regno; \
|
|
||||||
else \
|
|
||||||
addr = regno + NSIG_HNDLRS; /* Skip over signal handlers */
|
|
||||||
|
|
||||||
/* This enables reliable signals (and the associated setjmp/longjmp), and gives
|
/* This enables reliable signals (and the associated setjmp/longjmp), and gives
|
||||||
bsdish prototypes for getpgrp/setpgrg/setgroups and initgroups. */
|
bsdish prototypes for getpgrp/setpgrg/setgroups and initgroups. */
|
||||||
#define _BSD_COMPAT
|
#define _BSD_COMPAT
|
||||||
|
Reference in New Issue
Block a user