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/tclDecls.h | |
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/tclDecls.h')
-rw-r--r-- | generic/tclDecls.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h index a670f78..22c6af4 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.h @@ -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: tclDecls.h,v 1.32 2000/04/04 20:28:41 kupries Exp $ + * RCS: @(#) $Id: tclDecls.h,v 1.33 2000/04/05 00:42:19 welch Exp $ */ #ifndef _TCLDECLS @@ -1219,10 +1219,10 @@ EXTERN int Tcl_ProcObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp * interp, int objc, Tcl_Obj *CONST objv[])); /* 391 */ -EXTERN void Tcl_FinalizeCondition _ANSI_ARGS_(( +EXTERN void Tcl_ConditionFinalize _ANSI_ARGS_(( Tcl_Condition * condPtr)); /* 392 */ -EXTERN void Tcl_FinalizeMutex _ANSI_ARGS_((Tcl_Mutex * mutex)); +EXTERN void Tcl_MutexFinalize _ANSI_ARGS_((Tcl_Mutex * mutex)); typedef struct TclStubHooks { struct TclPlatStubs *tclPlatStubs; @@ -1681,8 +1681,8 @@ typedef struct TclStubs { int (*tcl_GetChannelNames) _ANSI_ARGS_((Tcl_Interp * interp)); /* 388 */ int (*tcl_GetChannelNamesEx) _ANSI_ARGS_((Tcl_Interp * interp, char * pattern)); /* 389 */ int (*tcl_ProcObjCmd) _ANSI_ARGS_((ClientData clientData, Tcl_Interp * interp, int objc, Tcl_Obj *CONST objv[])); /* 390 */ - void (*tcl_FinalizeCondition) _ANSI_ARGS_((Tcl_Condition * condPtr)); /* 391 */ - void (*tcl_FinalizeMutex) _ANSI_ARGS_((Tcl_Mutex * mutex)); /* 392 */ + void (*tcl_ConditionFinalize) _ANSI_ARGS_((Tcl_Condition * condPtr)); /* 391 */ + void (*tcl_MutexFinalize) _ANSI_ARGS_((Tcl_Mutex * mutex)); /* 392 */ } TclStubs; #ifdef __cplusplus @@ -3292,13 +3292,13 @@ extern TclStubs *tclStubsPtr; #define Tcl_ProcObjCmd \ (tclStubsPtr->tcl_ProcObjCmd) /* 390 */ #endif -#ifndef Tcl_FinalizeCondition -#define Tcl_FinalizeCondition \ - (tclStubsPtr->tcl_FinalizeCondition) /* 391 */ +#ifndef Tcl_ConditionFinalize +#define Tcl_ConditionFinalize \ + (tclStubsPtr->tcl_ConditionFinalize) /* 391 */ #endif -#ifndef Tcl_FinalizeMutex -#define Tcl_FinalizeMutex \ - (tclStubsPtr->tcl_FinalizeMutex) /* 392 */ +#ifndef Tcl_MutexFinalize +#define Tcl_MutexFinalize \ + (tclStubsPtr->tcl_MutexFinalize) /* 392 */ #endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ |