/*1* This file is subject to the terms and conditions of the GNU General Public2* License. See the file "COPYING" in the main directory of this archive3* for more details.4*5* Copyright (C) 1995, 2003 by Ralf Baechle6* Copyright (C) 1999 Silicon Graphics, Inc.7*/8#ifndef __ASM_BREAK_H9#define __ASM_BREAK_H1011#ifdef __UAPI_ASM_BREAK_H12#error "Error: Do not directly include <uapi/asm/break.h>"13#endif14#include <uapi/asm/break.h>1516/*17* Break codes used internally to the kernel.18*/19#define BRK_KDB 513 /* Used in KDB_ENTER() */20#define BRK_MEMU 514 /* Used by FPU emulator */21#define BRK_KPROBE_BP 515 /* Kprobe break */22#define BRK_KPROBE_SSTEPBP 516 /* Kprobe single step software implementation */23#define BRK_MULOVF 1023 /* Multiply overflow */2425#endif /* __ASM_BREAK_H */262728