diff options
author | nijtmans <nijtmans> | 2010-06-16 14:49:50 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-06-16 14:49:50 (GMT) |
commit | 895f05f712393e5e7629384b1690690c6f866974 (patch) | |
tree | 089f9fd54e012a12bd858f538ba697f61a08789e /generic/tcl.decls | |
parent | eb98df8fef94944b7b479387e27232beab5e869d (diff) | |
download | tcl-895f05f712393e5e7629384b1690690c6f866974.zip tcl-895f05f712393e5e7629384b1690690c6f866974.tar.gz tcl-895f05f712393e5e7629384b1690690c6f866974.tar.bz2 |
Simplify Tcl_AppInit and *_Init definitions.
Change TclpThreadCreate and Tcl_CreateThread
signature, making clear that "proc" is a function
pointer, as in all other "proc" function parameters.
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index b090747..303ac8e 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tcl.decls,v 1.174 2010/04/02 23:11:55 nijtmans Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.175 2010/06/16 14:49:50 nijtmans Exp $ library tcl @@ -1391,7 +1391,7 @@ declare 392 generic { void Tcl_MutexFinalize(Tcl_Mutex *mutex) } declare 393 generic { - int Tcl_CreateThread(Tcl_ThreadId *idPtr, Tcl_ThreadCreateProc proc, + int Tcl_CreateThread(Tcl_ThreadId *idPtr, Tcl_ThreadCreateProc *proc, ClientData clientData, int stackSize, int flags) } |