Subversion Repositories Kolibri OS

Rev

Rev 5191 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5191 Rev 6324
Line 1... Line 1...
1
/* Target signal numbers for GDB and the GDB remote protocol.
1
/* Target signal numbers for GDB and the GDB remote protocol.
2
   Copyright 2010-2013 Free Software Foundation, Inc.
2
   Copyright (C) 2010-2015 Free Software Foundation, Inc.
Line 3... Line 3...
3
 
3
 
Line 4... Line 4...
4
   This file is part of GDB.
4
   This file is part of GDB.
5
 
5
 
Line 184... Line 184...
184
     "Internal error: printing GDB_SIGNAL_DEFAULT")
184
     "Internal error: printing GDB_SIGNAL_DEFAULT")
Line 185... Line 185...
185
 
185
 
186
/* Mach exceptions.  In versions of GDB before 5.2, these were just before
186
/* Mach exceptions.  In versions of GDB before 5.2, these were just before
187
   GDB_SIGNAL_INFO if you were compiling on a Mach host (and missing
187
   GDB_SIGNAL_INFO if you were compiling on a Mach host (and missing
188
   otherwise).  */
188
   otherwise).  */
189
SET (TARGET_EXC_BAD_ACCESS, 145, "EXC_BAD_ACCESS", "Could not access memory")
189
SET (GDB_EXC_BAD_ACCESS, 145, "EXC_BAD_ACCESS", "Could not access memory")
190
SET (TARGET_EXC_BAD_INSTRUCTION, 146, "EXC_BAD_INSTRUCTION",
190
SET (GDB_EXC_BAD_INSTRUCTION, 146, "EXC_BAD_INSTRUCTION",
191
     "Illegal instruction/operand")
191
     "Illegal instruction/operand")
192
SET (TARGET_EXC_ARITHMETIC, 147, "EXC_ARITHMETIC", "Arithmetic exception")
192
SET (GDB_EXC_ARITHMETIC, 147, "EXC_ARITHMETIC", "Arithmetic exception")
193
SET (TARGET_EXC_EMULATION, 148, "EXC_EMULATION", "Emulation instruction")
193
SET (GDB_EXC_EMULATION, 148, "EXC_EMULATION", "Emulation instruction")
194
SET (TARGET_EXC_SOFTWARE, 149, "EXC_SOFTWARE", "Software generated exception")
194
SET (GDB_EXC_SOFTWARE, 149, "EXC_SOFTWARE", "Software generated exception")
Line 195... Line 195...
195
SET (TARGET_EXC_BREAKPOINT, 150, "EXC_BREAKPOINT", "Breakpoint")
195
SET (GDB_EXC_BREAKPOINT, 150, "EXC_BREAKPOINT", "Breakpoint")
Line 196... Line 196...
196
 
196
 
197
/* If you are adding a new signal, add it just above this comment.  */
197
/* If you are adding a new signal, add it just above this comment.  */