diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-03-15 15:38:19 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-03-15 15:38:19 (GMT) |
commit | e9faab76a114f2450bf2bc9966992e0e180efe30 (patch) | |
tree | 81f103c97293cf6fc73f7a5a59d893ada245580d /generic | |
parent | 153e08d5cd7c0d6b7c7d8078214b575d04b4ae90 (diff) | |
download | tcl-e9faab76a114f2450bf2bc9966992e0e180efe30.zip tcl-e9faab76a114f2450bf2bc9966992e0e180efe30.tar.gz tcl-e9faab76a114f2450bf2bc9966992e0e180efe30.tar.bz2 |
Added support for SIGINFO. [Patch 1513655]
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclPosixStr.c | 8 |
1 files changed, 7 insertions, 1 deletions
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"; } |