diff options
author | hobbs <hobbs> | 2003-10-13 01:00:37 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-10-13 01:00:37 (GMT) |
commit | c18947675711693a12a4d8f933281f357bbab984 (patch) | |
tree | beb1f3386b777492866cc09ce019eceef4ea058b /unix/tclUnixTest.c | |
parent | eca4664d01909a7882167002ee5f451dc982076e (diff) | |
download | tcl-c18947675711693a12a4d8f933281f357bbab984.zip tcl-c18947675711693a12a4d8f933281f357bbab984.tar.gz tcl-c18947675711693a12a4d8f933281f357bbab984.tar.bz2 |
* unix/tclUnixTest.c (TestalarmCmd): don't bother checking return
value of alarm. [Bug #664755] (english)
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r-- | unix/tclUnixTest.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 2b636b4..e4c5662 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTest.c,v 1.14 2003/02/15 22:30:29 kennykb Exp $ + * RCS: @(#) $Id: tclUnixTest.c,v 1.14.2.1 2003/10/13 01:00:38 hobbs Exp $ */ #include "tclInt.h" @@ -647,10 +647,7 @@ TestalarmCmd(clientData, interp, argc, argv) Tcl_AppendResult(interp, "sigaction: ", Tcl_PosixError(interp), NULL); return TCL_ERROR; } - if (alarm(sec) < 0) { - Tcl_AppendResult(interp, "alarm: ", Tcl_PosixError(interp), NULL); - return TCL_ERROR; - } + (void)alarm(sec); return TCL_OK; #else Tcl_AppendResult(interp, "warning: sigaction SA_RESTART not support on this platform", NULL); |