Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <vmihnq$24c6l$1@dont-email.me>
Deutsch   English   Français   Italiano  
<vmihnq$24c6l$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!eternal-september.org!.POSTED!not-for-mail
From: aotto1968 <aotto1968@t-online.de>
Newsgroups: comp.lang.tcl
Subject: what happen to tcl C api ?
Date: Sun, 19 Jan 2025 10:47:36 +0100
Organization: A noiseless patient Spider
Lines: 52
Message-ID: <vmihnq$24c6l$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 19 Jan 2025 10:47:38 +0100 (CET)
Injection-Info: dont-email.me; posting-host="3da57d183ec623340eca6a2638b336b1";
	logging-data="2240725"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX18GBgHy3JuF5Ze29FhLXDSNBWpiR8yvoyA="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:AsjFon+g1ef06BFU96EyK8AKxP0=
Content-Language: en-US
Bytes: 2832


what happened to the tcl "C" api?

i remember that about 20 years ago, when i wrote the tcl-c compiler, the language "tcl" was the language with one of the best 
"c" api support. back then, not only the "public" documented c api could be used but also the semi-public api where every tcl 
command was accessible with "tcl_?Cmd?ObjCmd" (e.g. Tcl_IncrObjCmd for "incr").

today almost the entire tcl api is "private" and therefore unusable for the extension writer. This means that a simple command 
like "incr" which already has a "C" API in Tcl can only be called via Tcl-EvalXX OR has to be laboriously reconstructed from the 
Tcl source code using "copy-past". The reason for the (make everything private mode) seems to be the "stubs" subsystem where 
every API function has to be exported using Tcl's internal "table")

Here are some numbers
1) is a version of "incr" that works using the "limited public tcl-c-api "Tcl_ObjGetVar/SetVar" etc
2) is a version that works using "Tcl_Eval"

=> even WITHOUT the direct use of "Tcl_IncrObjCmd" the "handwritten" solution is better than the Tcl_Eval solution. I rate the 
NON-exported Tcl_IncrObjCmd solution as MUCH better than my "hand-written" solution.

=> and now the summary: Question: Why did the TCL community "throw away" TCL's massive technological lead just to become one of 
the slowest languages ​​ever?


# modification via PUBLIC tcl-api
set start1  0
 > 0
::myooX::_IncrIndex1 start1
 > 1
::myooX::_IncrIndex1 start1 2
 > 3
::myooX::_IncrIndex1 start1 -1
 > 2
set start1
 > 2

# modification via tcl-eval-api
set start2  0
 > 0
::myooX::_IncrIndex2 start2
 > 1
::myooX::_IncrIndex2 start2 2
 > 3
::myooX::_IncrIndex2 start2 -1
 > 2
set start2
 > 2

time { ::myooX::_IncrIndex1 start1 } 1000
 > 0.84 microseconds per iteration
time { ::myooX::_IncrIndex2 start2 } 1000
 > 0.983 microseconds per iteration