diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2009-03-15 15:38:19 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2009-03-15 15:38:19 (GMT) |
| commit | a89c84e82448b7e3d98994e0aec61e043e36b585 (patch) | |
| tree | 81f103c97293cf6fc73f7a5a59d893ada245580d | |
| parent | 0d1f8fa0804d2e6002128f8471da1abf82438e7f (diff) | |
| download | tcl-a89c84e82448b7e3d98994e0aec61e043e36b585.zip tcl-a89c84e82448b7e3d98994e0aec61e043e36b585.tar.gz tcl-a89c84e82448b7e3d98994e0aec61e043e36b585.tar.bz2 | |
Added support for SIGINFO. [Patch 1513655]
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | generic/tclPosixStr.c | 8 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2009-03-15 Donal K. Fellows <dkf@users.sf.net> + + * generic/tclPosixStr.c (Tcl_SignalId,Tcl_SignalMsg): [Patch 1513655]: + Added support for SIGINFO, which is present on BSD platforms. + 2009-02-20 Don Porter <dgp@users.sourceforge.net> * generic/tclPathObj.c: Fixed mistaken logic in TclFSGetPathType() diff --git a/generic/tclPosixStr.c b/generic/tclPosixStr.c index a48c2dd..31fccba 100644 --- a/generic/tclPosixStr.c +++ b/generic/tclPosixStr.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPosixStr.c,v 1.12 2005/11/07 15:16:03 dkf Exp $ + * RCS: @(#) $Id: tclPosixStr.c,v 1.12.10.1 2009/03/15 15:38:19 dkf Exp $ */ #include "tclInt.h" @@ -1039,6 +1039,9 @@ Tcl_SignalId( #ifdef SIGXFSZ case SIGXFSZ: return "SIGXFSZ"; #endif +#if defined(SIGINFO) && (!defined(SIGPWR) || (SIGINFO != SIGPWR)) + case SIGINFO: return "SIGINFO"; +#endif } return "unknown signal"; } @@ -1170,6 +1173,9 @@ Tcl_SignalMsg( #ifdef SIGXFSZ case SIGXFSZ: return "exceeded file size limit"; #endif +#if defined(SIGINFO) && (!defined(SIGPWR) || (SIGINFO != SIGPWR)) + case SIGINFO: return "information request"; +#endif } return "unknown signal"; } |
