diff options
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/tm-cygwin32.h | 4 | ||||
-rw-r--r-- | gdb/config/i386/xm-cygwin32.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/config/i386/tm-cygwin32.h b/gdb/config/i386/tm-cygwin32.h index f7464ba..b1ad894 100644 --- a/gdb/config/i386/tm-cygwin32.h +++ b/gdb/config/i386/tm-cygwin32.h @@ -119,7 +119,9 @@ double_to_i387 PARAMS ((char *, char *)); #define NAMES_HAVE_UNDERSCORE - #define IN_SOLIB_CALL_TRAMPOLINE(pc, name) skip_trampoline_code (pc, name) #define SKIP_TRAMPOLINE_CODE(pc) skip_trampoline_code (pc, 0) extern CORE_ADDR skip_trampoline_code PARAMS ((CORE_ADDR pc, char *name)); + +extern char *cygwin_pid_to_str PARAMS ((int pid)); +#define target_pid_to_str(PID) cygwin_pid_to_str (PID) diff --git a/gdb/config/i386/xm-cygwin32.h b/gdb/config/i386/xm-cygwin32.h index b722f97..4482780 100644 --- a/gdb/config/i386/xm-cygwin32.h +++ b/gdb/config/i386/xm-cygwin32.h @@ -34,3 +34,5 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Define this if source files use \r\n rather than just \n. */ #define CRLF_SOURCE_FILES + +#define HAVE_SIGSETMASK 0 |