Server IP : 104.21.38.3 / Your IP : 172.71.82.70 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-142-generic/arch/x86/include/asm/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_X86_TRAPNR_H #define _ASM_X86_TRAPNR_H /* Interrupts/Exceptions */ #define X86_TRAP_DE 0 /* Divide-by-zero */ #define X86_TRAP_DB 1 /* Debug */ #define X86_TRAP_NMI 2 /* Non-maskable Interrupt */ #define X86_TRAP_BP 3 /* Breakpoint */ #define X86_TRAP_OF 4 /* Overflow */ #define X86_TRAP_BR 5 /* Bound Range Exceeded */ #define X86_TRAP_UD 6 /* Invalid Opcode */ #define X86_TRAP_NM 7 /* Device Not Available */ #define X86_TRAP_DF 8 /* Double Fault */ #define X86_TRAP_OLD_MF 9 /* Coprocessor Segment Overrun */ #define X86_TRAP_TS 10 /* Invalid TSS */ #define X86_TRAP_NP 11 /* Segment Not Present */ #define X86_TRAP_SS 12 /* Stack Segment Fault */ #define X86_TRAP_GP 13 /* General Protection Fault */ #define X86_TRAP_PF 14 /* Page Fault */ #define X86_TRAP_SPURIOUS 15 /* Spurious Interrupt */ #define X86_TRAP_MF 16 /* x87 Floating-Point Exception */ #define X86_TRAP_AC 17 /* Alignment Check */ #define X86_TRAP_MC 18 /* Machine Check */ #define X86_TRAP_XF 19 /* SIMD Floating-Point Exception */ #define X86_TRAP_VE 20 /* Virtualization Exception */ #define X86_TRAP_CP 21 /* Control Protection Exception */ #define X86_TRAP_VC 29 /* VMM Communication Exception */ #define X86_TRAP_IRET 32 /* IRET Exception */ #endif