Planeshift
|
00001 /* Copyright (c) 2006, Google Inc. 00002 * All rights reserved. 00003 * 00004 * Redistribution and use in source and binary forms, with or without 00005 * modification, are permitted provided that the following conditions are 00006 * met: 00007 * 00008 * * Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * * Redistributions in binary form must reproduce the above 00011 * copyright notice, this list of conditions and the following disclaimer 00012 * in the documentation and/or other materials provided with the 00013 * distribution. 00014 * * Neither the name of Google Inc. nor the names of its 00015 * contributors may be used to endorse or promote products derived from 00016 * this software without specific prior written permission. 00017 * 00018 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00019 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00020 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00021 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 00022 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00023 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00024 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00025 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 00026 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 00028 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 00029 00030 /* minidump_exception_linux.h: A definition of exception codes for 00031 * Linux 00032 * 00033 * (This is C99 source, please don't corrupt it with C++.) 00034 * 00035 * Author: Mark Mentovai 00036 * Split into its own file: Neal Sidhwaney */ 00037 00038 00039 #ifndef GOOGLE_BREAKPAD_COMMON_MINIDUMP_EXCEPTION_LINUX_H__ 00040 #define GOOGLE_BREAKPAD_COMMON_MINIDUMP_EXCEPTION_LINUX_H__ 00041 00042 #include <stddef.h> 00043 00044 #include "google_breakpad/common/breakpad_types.h" 00045 00046 00047 /* For (MDException).exception_code. These values come from bits/signum.h. 00048 */ 00049 typedef enum { 00050 MD_EXCEPTION_CODE_LIN_SIGHUP = 1, /* Hangup (POSIX) */ 00051 MD_EXCEPTION_CODE_LIN_SIGINT = 2, /* Interrupt (ANSI) */ 00052 MD_EXCEPTION_CODE_LIN_SIGQUIT = 3, /* Quit (POSIX) */ 00053 MD_EXCEPTION_CODE_LIN_SIGILL = 4, /* Illegal instruction (ANSI) */ 00054 MD_EXCEPTION_CODE_LIN_SIGTRAP = 5, /* Trace trap (POSIX) */ 00055 MD_EXCEPTION_CODE_LIN_SIGABRT = 6, /* Abort (ANSI) */ 00056 MD_EXCEPTION_CODE_LIN_SIGBUS = 7, /* BUS error (4.2 BSD) */ 00057 MD_EXCEPTION_CODE_LIN_SIGFPE = 8, /* Floating-point exception (ANSI) */ 00058 MD_EXCEPTION_CODE_LIN_SIGKILL = 9, /* Kill, unblockable (POSIX) */ 00059 MD_EXCEPTION_CODE_LIN_SIGUSR1 = 10, /* User-defined signal 1 (POSIX). */ 00060 MD_EXCEPTION_CODE_LIN_SIGSEGV = 11, /* Segmentation violation (ANSI) */ 00061 MD_EXCEPTION_CODE_LIN_SIGUSR2 = 12, /* User-defined signal 2 (POSIX) */ 00062 MD_EXCEPTION_CODE_LIN_SIGPIPE = 13, /* Broken pipe (POSIX) */ 00063 MD_EXCEPTION_CODE_LIN_SIGALRM = 14, /* Alarm clock (POSIX) */ 00064 MD_EXCEPTION_CODE_LIN_SIGTERM = 15, /* Termination (ANSI) */ 00065 MD_EXCEPTION_CODE_LIN_SIGSTKFLT = 16, /* Stack faultd */ 00066 MD_EXCEPTION_CODE_LIN_SIGCHLD = 17, /* Child status has changed (POSIX) */ 00067 MD_EXCEPTION_CODE_LIN_SIGCONT = 18, /* Continue (POSIX) */ 00068 MD_EXCEPTION_CODE_LIN_SIGSTOP = 19, /* Stop, unblockable (POSIX) */ 00069 MD_EXCEPTION_CODE_LIN_SIGTSTP = 20, /* Keyboard stop (POSIX) */ 00070 MD_EXCEPTION_CODE_LIN_SIGTTIN = 21, /* Background read from tty (POSIX) */ 00071 MD_EXCEPTION_CODE_LIN_SIGTTOU = 22, /* Background write to tty (POSIX) */ 00072 MD_EXCEPTION_CODE_LIN_SIGURG = 23, 00073 /* Urgent condition on socket (4.2 BSD) */ 00074 MD_EXCEPTION_CODE_LIN_SIGXCPU = 24, /* CPU limit exceeded (4.2 BSD) */ 00075 MD_EXCEPTION_CODE_LIN_SIGXFSZ = 25, 00076 /* File size limit exceeded (4.2 BSD) */ 00077 MD_EXCEPTION_CODE_LIN_SIGVTALRM = 26, /* Virtual alarm clock (4.2 BSD) */ 00078 MD_EXCEPTION_CODE_LIN_SIGPROF = 27, /* Profiling alarm clock (4.2 BSD) */ 00079 MD_EXCEPTION_CODE_LIN_SIGWINCH = 28, /* Window size change (4.3 BSD, Sun) */ 00080 MD_EXCEPTION_CODE_LIN_SIGIO = 29, /* I/O now possible (4.2 BSD) */ 00081 MD_EXCEPTION_CODE_LIN_SIGPWR = 30, /* Power failure restart (System V) */ 00082 MD_EXCEPTION_CODE_LIN_SIGSYS = 31, /* Bad system call */ 00083 MD_EXCEPTION_CODE_LIN_DUMP_REQUESTED = 0xFFFFFFFF /* No exception, 00084 dump requested. */ 00085 } MDExceptionCodeLinux; 00086 00087 #endif /* GOOGLE_BREAKPAD_COMMON_MINIDUMP_EXCEPTION_LINUX_H__ */