summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2008-05-03 19:31:07 (GMT)
committerdas <das>2008-05-03 19:31:07 (GMT)
commit631d521b31502f1734b9d599aa2d5fa7c92af8d9 (patch)
tree4c7aa6040333242812d04993cb4457c22e42c708
parentab1dfd493e75af34d7e730e26a189adf49e9ec5d (diff)
downloadtcl-631d521b31502f1734b9d599aa2d5fa7c92af8d9.zip
tcl-631d521b31502f1734b9d599aa2d5fa7c92af8d9.tar.gz
tcl-631d521b31502f1734b9d599aa2d5fa7c92af8d9.tar.bz2
use Tcl_Panic() instead of panic()
-rw-r--r--generic/tclAsync.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclAsync.c b/generic/tclAsync.c
index f57c456..1e5733e 100644
--- a/generic/tclAsync.c
+++ b/generic/tclAsync.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclAsync.c,v 1.15 2008/04/27 08:36:20 vasiljevic Exp $
+ * RCS: @(#) $Id: tclAsync.c,v 1.16 2008/05/03 19:31:07 das Exp $
*/
#include "tclInt.h"
@@ -282,7 +282,7 @@ Tcl_AsyncDelete(
*/
if (asyncPtr->originThrdId != Tcl_GetCurrentThread()) {
- panic("Tcl_AsyncDelete: async handler deleted by the wrong thread");
+ Tcl_Panic("Tcl_AsyncDelete: async handler deleted by the wrong thread");
}
/*
@@ -300,7 +300,7 @@ Tcl_AsyncDelete(
thisPtr = thisPtr->nextPtr;
}
if (thisPtr == NULL) {
- panic("Tcl_AsyncDelete: cannot find async handler");
+ Tcl_Panic("Tcl_AsyncDelete: cannot find async handler");
}
if (asyncPtr == tsdPtr->firstHandler) {
tsdPtr->firstHandler = asyncPtr->nextPtr;