]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/signal.h
Add Socket Libraries.
[mirror_edk2.git] / StdLib / Include / signal.h
index 52873c764d6a8c9494f7135fcc7e3563046918a0..6c1ff1b4e4b5287181b745afb16d71d71b1c7cc5 100644 (file)
@@ -14,7 +14,7 @@
   their semantics, and their default handling is implementation-defined; all\r
   signal numbers shall be positive.\r
 \r
-Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials are licensed and made available under\r
 the terms and conditions of the BSD License that accompanies this distribution.\r
 The full text of the license may be found at\r
@@ -50,13 +50,22 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     corresponding to the specified condition.\r
     Many existing programs expect these to be macros.\r
 **/\r
-#define SIGINT    1   ///< receipt of an interactive attention signal\r
-#define SIGILL    2   ///< detection of an invalid function image, such as an invalid instruction\r
-#define SIGABRT   3   ///< abnormal termination, such as is initiated by the abort function\r
-#define SIGFPE    4   ///< an erroneous arithmetic operation, such as zero divide or an operation resulting in overflow\r
-#define SIGSEGV   5   ///< an invalid access to storage\r
-#define SIGTERM   6   ///< a termination request sent to the program\r
-#define SIG_LAST  7   ///< One more than the largest signal number\r
+#define SIGINT     __SigInt     ///< receipt of an interactive attention signal\r
+#define SIGILL     __SigIll     ///< detection of an invalid function image, such as an invalid instruction\r
+#define SIGABRT    __SigAbrt    ///< abnormal termination, such as is initiated by the abort function\r
+#define SIGFPE     __SigFpe     ///< an erroneous arithmetic operation, such as zero divide or an operation resulting in overflow\r
+#define SIGSEGV    __SigSegv    ///< an invalid access to storage\r
+#define SIGTERM    __SigTerm    ///< a termination request sent to the program\r
+#define SIGBREAK   __SigBreak   ///< added for Python\r
+#define SIGALRM    __SigAlrm    ///< Added for Posix timer functions\r
+#define SIGVTALRM  __SigVtAlrm  ///< Added for Posix timer functions\r
+#define SIGPROF    __SigProf    ///< Added for Posix timer functions\r
+#define SIGUSR1    __SigUsr1    ///< Added for Posix timer functions\r
+#define SIGUSR2    __SigUsr2    ///< Added for Posix timer functions\r
+#define SIGWINCH   __SigWinch   ///< Added for Posix timer functions\r
+#define SIGPIPE    __SigPipe    ///< Added for Posix timer functions\r
+#define SIGQUIT    __SigQuit    ///< Added for Posix timer functions\r
+#define SIG_LAST   __Sig_Last   ///< One more than the largest signal number\r
 \r
 __BEGIN_DECLS\r
 \r