xref: /openbmc/linux/arch/mips/include/asm/break.h (revision e5451c8f8330e03ad3cfa16048b4daf961af434f)
1*612663a9SDavid Daney /*
2*612663a9SDavid Daney  * This file is subject to the terms and conditions of the GNU General Public
3*612663a9SDavid Daney  * License.  See the file "COPYING" in the main directory of this archive
4*612663a9SDavid Daney  * for more details.
5*612663a9SDavid Daney  *
6*612663a9SDavid Daney  * Copyright (C) 1995, 2003 by Ralf Baechle
7*612663a9SDavid Daney  * Copyright (C) 1999 Silicon Graphics, Inc.
8*612663a9SDavid Daney  */
9*612663a9SDavid Daney #ifndef __ASM_BREAK_H
10*612663a9SDavid Daney #define __ASM_BREAK_H
11*612663a9SDavid Daney 
12*612663a9SDavid Daney #ifdef __UAPI_ASM_BREAK_H
13*612663a9SDavid Daney #error "Error: Do not directly include <uapi/asm/break.h>"
14*612663a9SDavid Daney #endif
15*612663a9SDavid Daney #include <uapi/asm/break.h>
16*612663a9SDavid Daney 
17*612663a9SDavid Daney /*
18*612663a9SDavid Daney  * Break codes used internally to the kernel.
19*612663a9SDavid Daney  */
20*612663a9SDavid Daney #define BRK_KDB		513	/* Used in KDB_ENTER() */
21*612663a9SDavid Daney #define BRK_MEMU	514	/* Used by FPU emulator */
22*612663a9SDavid Daney #define BRK_KPROBE_BP	515	/* Kprobe break */
23*612663a9SDavid Daney #define BRK_KPROBE_SSTEPBP 516	/* Kprobe single step software implementation */
24*612663a9SDavid Daney #define BRK_MULOVF	1023	/* Multiply overflow */
25*612663a9SDavid Daney 
26*612663a9SDavid Daney #endif /* __ASM_BREAK_H */
27