diff options
author | welch <welch> | 2000-04-05 00:42:19 (GMT) |
---|---|---|
committer | welch <welch> | 2000-04-05 00:42:19 (GMT) |
commit | 5820a11d23505ff7b32c315baf0ba80ad43f85b0 (patch) | |
tree | bb91db47932f866f9d7dd8f21a987905d73e9a59 /generic/tclStubInit.c | |
parent | 6dbef5e2422044bd459aafbd726584b7cca1ced1 (diff) | |
download | tcl-5820a11d23505ff7b32c315baf0ba80ad43f85b0.zip tcl-5820a11d23505ff7b32c315baf0ba80ad43f85b0.tar.gz tcl-5820a11d23505ff7b32c315baf0ba80ad43f85b0.tar.bz2 |
Fixed compilation w/out TCL_THREADS
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 0c0fb19..13180f8 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.33 2000/04/04 20:28:43 kupries Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.34 2000/04/05 00:42:19 welch Exp $ */ #include "tclInt.h" @@ -788,8 +788,8 @@ TclStubs tclStubs = { Tcl_GetChannelNames, /* 388 */ Tcl_GetChannelNamesEx, /* 389 */ Tcl_ProcObjCmd, /* 390 */ - Tcl_FinalizeCondition, /* 391 */ - Tcl_FinalizeMutex, /* 392 */ + Tcl_ConditionFinalize, /* 391 */ + Tcl_MutexFinalize, /* 392 */ }; /* !END!: Do not edit above this line. */ |