Menu

#1 tcldbi.h: static inside structures

open
nobody
None
5
2004-01-31
2004-01-31
No

Structures inside tcldbi.h contain
"TCL_DECLARE_MUTEX(name);"
It is preprocessed into "static Tcl_Mutex name;;"
However, AFAIK, it is permissible at C++, not at C. In
fact gcc does not compile it. It can be easily
exchanged into just "Tcl_Mutex name;" inside the
structures, but I do not know wheter the staticness is
required or not.

Discussion


Log in to post a comment.