summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2003-10-13 00:59:48 (GMT)
committerhobbs <hobbs@noemail.net>2003-10-13 00:59:48 (GMT)
commitdb0cd0ba857592102f7cb78859303390ca18d410 (patch)
treec9b07e2a8e8d3250ea769272a62530c229999dfa /unix
parentc2d2a547b55f4028b4199b8fefa8304ec4bbe79c (diff)
downloadtcl-db0cd0ba857592102f7cb78859303390ca18d410.zip
tcl-db0cd0ba857592102f7cb78859303390ca18d410.tar.gz
tcl-db0cd0ba857592102f7cb78859303390ca18d410.tar.bz2
* unix/tclUnixTest.c (TestalarmCmd): don't bother checking return
value of alarm. [Bug #664755] (english) FossilOrigin-Name: 12b273dd6cf95bbc7ccfe175df23c1d2723953de
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixTest.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c
index 2b636b4..f89b820 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.15 2003/10/13 00:59:48 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);