|
From: | Earnie Boyd |
Subject: | Re: make signal text descriptions |
Date: | Wed, 29 Oct 2003 18:33:46 -0500 |
User-agent: | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130 |
J. Grant wrote:
Hello,We use the system service to translate the code if the system provides it (many UNIX systems provide strsignal() for example). If not we have a predefined set of signals we translate, but if the signal is not a member of that predefined list it's not translated.ok, I wonder if win32 has extra signals, this code 127, could these be supported for win32 ports?
#define SIGINT 2 /* Interactive attention */ #define SIGILL 4 /* Illegal instruction */ #define SIGFPE 8 /* Floating point error */ #define SIGSEGV 11 /* Segmentation violation */ #define SIGTERM 15 /* Termination request */ #define SIGBREAK 21 /* Control-break */ #define SIGABRT 22 /* Abnormal termination (abort) */ #define NSIG 23 /* maximum signal number + 1 */ Earnie -- http://www.mingw.org Powered by SourceForge <http://sourceforge.net/projects/mingw>
[Prev in Thread] | Current Thread | [Next in Thread] |