![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.tcl archiveNeed a reliable way to determine the line of code being executed
From: Mark Wege <mwege@csc.R_E_M_O_V_E.com>
Date: Tue Feb 28 2006 - 19:49:29 CET
I was wondering if anyone knows of a reliable method of obtaining the
I had hoped to use "info level" to get the information I need, but it
I'm probably not explaining this well, so here's an example:
set myVar var1
set res [MyProc $myVar]
From within the proc, the "info level" command will give me:
MyProc var1
but I need to obtain the original line of code, i.e.:
set res [MyProc $myVar]
Ultimately, what I'm need to know is that the result of the call to
I'm looking for this because I need to fix an issue in a large
By RELIABLY doing the refresh from within the procedures, I hope to
Any suggestions would be very welcome.
Mark
|