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