It sounds like most of this is Windows specific, right Scott? What if we just cave in and set up basic registry structure under some vendor-neutral name, e.g.,...
Brent Welch
welch@...
Jul 4, 2000 5:39 am
978
On Mon, 3 Jul 2000, Brent Welch wrote: Actually, there are a couple of problems. In the case where an extension needs to bootstrap Tcl, how does it tell Tcl...
Mo DeJong
mdejong@...
Jul 4, 2000 6:20 am
979
I did some more looking into the problem where an exception is raised in the reflect table when a duplicate entry is found. I posted a note to the java-linux...
Mo DeJong
mdejong@...
Jul 5, 2000 1:45 am
980
Is there a way to trace changes to a proc? I'm using Jacl and the Interp.traceVar() which seems to work fine for vars bug redefining a proc doesn't result in...
Thomas McKay
mckay@...
Jul 10, 2000 1:21 pm
981
... There is currently no API to support this. I did see that one is being worked on for Tcl 8.4. You are welcome to grab that implementation and convert it...
Mo DeJong
mdejong@...
Jul 10, 2000 1:43 pm
982
... The TclJava mailing list is sponsored by Scriptics Corporation. To subscribe: send mail to TclJava-request@... with the word SUBSCRIBE as the...
Jeff Kayser
jeff.kayser@...
Jul 12, 2000 5:42 am
983
It took a bit longer than I would have liked, but I have
finally finished up the reflect table overhaul. This
fixes the problem with >= JDK 1.2 where object...
Mo DeJong
mdejong@...
Jul 13, 2000 6:18 pm
984
Hello, for some very frustating reasons (hardware crash and copy failures during backup) I lost most of the sources for my InterpCmd java class, which I...
Christian Krone
krischan@...
Jul 13, 2000 6:36 pm
985
I was just trying to build Tcl Blend when I got this error: % /home/mo/project/tcljava/configure --prefix=/home/mo/project/install/tcljava ...
Mo DeJong
mdejong@...
Jul 13, 2000 7:33 pm
986
... Dang, an interp command in Jacl would be really nice. ... Even stardates, that is too cool. ... I will add this to the CVS version of Jacl ASAP. It would ...
Mo DeJong
mdejong@...
Jul 13, 2000 7:44 pm
987
If TclBlend was built with Tcl stubs, then it would work fine. Otherwise, TclBlend needs to be linked against a dynamic build of Tcl and a dynamic JVM. The...
Scott Redman
redman@...
Jul 13, 2000 9:13 pm
988
Forwarded from the TEA mailing list... ... From: David Gravereaux [mailto:davygrvy@...] Sent: Friday, July 07, 2000 2:38 PM To: TEA mailing list...
Scott Redman
redman@...
Jul 13, 2000 9:38 pm
989
... Yeah, but Tcl still has that load stuff, I though it would only be dis-allowed if you passed --disable-load to configure. I tested it out with a static...
Mo DeJong
mdejong@...
Jul 13, 2000 9:49 pm
990
I just built and did a make test on the latest tcl java. I get this error: tcljava/JavaDefineClassCmd.test ==== java::defineclass-2.1 loading a class ====...
Larry W. Virden
lvirden@...
Jul 14, 2000 1:49 pm
991
... Both of these are bugs in the Sun JDK 1.2 JVM. I would tell you to call Sun to complain but it is unlikely that will help. I suggest you switch to the IBM...
Mo DeJong
mdejong@...
Jul 14, 2000 6:08 pm
992
Would it be worthwhile for these tests to generate a msg when the test case sees what it is using that marks the test case as a known problem? -- Never apply a...
Larry W. Virden
lvirden@...
Jul 14, 2000 6:19 pm
993
Sorry Mo, I should have remembered this from the last time. Unfortunately, because the Sun JDK comes with Solaris, that's what I am resigned to using. -- ...
Larry W. Virden
lvirden@...
Jul 14, 2000 6:20 pm
994
... The solution you suggest is akin to asking a vulcan if they feel bad because the vorlons left town. later Mo DeJong Red Hat Inc ... The TclJava mailing...
Mo DeJong
mdejong@...
Jul 14, 2000 6:58 pm
995
Hi, I am using Tcl 8.3.0 with tclBlend 1.3.0 (with the code for the testthread command compiled in) and Java JS2E v1.3 beta. When my software first starts, I...
Mike Schwartz
mschwartz@...
Jul 14, 2000 8:25 pm
996
... Hi Mike. ... $env(LD_LIBRARY_PATH)] ... I tested out your example code with IBM JDK 1.3 and got (what I can only assume is) the same error. Here is the...
Mo DeJong
mdejong@...
Jul 15, 2000 1:22 am
997
... I just did a CVS commit of these patches. Krischan, you really should post a note to comp.lang.tcl about the new stardate support in Jacl. I am sure there...
Mo DeJong
mdejong@...
Jul 16, 2000 6:23 pm
998
I am thinking that it might be good to change the name of the Tcl package for Tcl/Java related things to tcljava instead of java. I think this will make things...
Mo DeJong
mdejong@...
Jul 16, 2000 10:07 pm
999
Hello, last weekend I started another try to implement the InterpCmd class. It is still far from ready (right now the Tcl8.3 interp.test runs quiet only until...
Christian Krone
krischan@...
Jul 17, 2000 10:43 am
1000
Hello, ... I like the package name "java". IMHO the interfaces to other systems don't need to contain the string Tcl, since as a Tcl-script writer I know that...
Christian Krone
krischan@...
Jul 17, 2000 1:06 pm
1001
... I don't know about that. If someone wanted to load IncrTcl, I don't think "package require Incr" would be the first thing they would think of. ... ...
Mo DeJong
mdejong@...
Jul 17, 2000 6:29 pm
1002
Hi, It now appears the bug is a problem in the JNI implementation -- see the beginning of the stacktrace below: (gdb) where #0 0xfe29945c in...
Mike Schwartz
mschwartz@...
Jul 18, 2000 2:55 am
1003
so, I just had another idea: I don't really need (or even want) more than 1 JVM for all the tcl threads. On the Java side I have threads that allow concurrency...
Mike Schwartz
mschwartz@...
Jul 18, 2000 4:36 am
1004
You can do: Tcl Thread A -> package require java -> start JVM ... Tcl Thread B -> send request to Tcl thread A for Java work using message passing on the event...
Jiang Wu
jwu@...
Jul 18, 2000 6:02 pm
1005
Jiang, thanks for the response ... I don't think this will work because the Java-side code can have one thread block while waiting for another thread's work to...
Mike Schwartz
mschwartz@...
Jul 18, 2000 6:35 pm
1006
You are correct that the code can block if Tcl thread A blocks on doing some work. To share a single thread amount multiple threads, the single thread can...