[kaffe] shutdown a thread

2004-02-10 Thread kalyan ram
Hai
  I have implemented a pthread in kaffe interpreter
and the problem is kaffe does not shutdown after the
program executes because the pthread is still running
in machine.c.Is there a way to kill the thread after
the execution so that kaffe VM shuts down cleanly.

Any insights would be appreciated.

Thanks
Ram

__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] 1.1.4 Release on Monday

2004-02-10 Thread Jim Pick
On Sun, 8 Feb 2004 19:05:21 -0800
Jim Pick [EMAIL PROTECTED] wrote:

 Hi,
 
 I'm a bit short on time today (I decided to do my taxes), so I'm going
 to delay cutting the 1.1.4 release until tomorrow (Monday).

I'm still working on it -- but I won't get it done today.  Sorry about
that.  I like to take time to re-read the mailing list archives and
summarize the changes, but there's a lot to review.  It's a big job.

I need to get some sleep, and I've got quite a bit of real-life work to
do tomorrow.

Feel free to check new stuff in, as I created a branch for 1.1.4.

Cheers,

 - Jim
 

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (jim):

2004-02-10 Thread Kaffe CVS
*** ERROR *** cvsps failed - lastCandidate was 0

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] kaffe oji plugin

2004-02-10 Thread [EMAIL PROTECTED]
Hello all!
I got the kaffe mozilla plugin source
kaffeOJIPlugin.mozilla1.3.tar.gz,the kaffe source
kaffe-1.1.3.tar.gz,the mozilla source mozilla-source-1.3.tar.gz.
I've successifully compiled mozilla,kaffe and kaffe-oji-plugin.But there
is a error,start
mozilla,browse a web-page embedded java applet,the java applet has
successfully show on
screen, but it show on the boot screen not the window of browser.
I work in redhat linux 7.2.
Please help me.
Thanks a lot.
Greetings
john




___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (dalibor): Fixed compiler warning on m68k-netbsd

2004-02-10 Thread Kaffe CVS
PatchSet 4411 
Date: 2004/02/10 17:16:37
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fixed compiler warning on m68k-netbsd

2004-02-10  Dalibor Topic [EMAIL PROTECTED]

* config/m68k/netbsd1/jit-md.h:
Added missing includes for m68k_sync_icache.

* kaffe/kaffevm/intrp/machine.c:
Updated copyright notice.

Members: 
ChangeLog:1.1994-1.1995 
config/m68k/netbsd1/jit-md.h:1.8-1.9 
kaffe/kaffevm/intrp/machine.c:1.40-1.41 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1994 kaffe/ChangeLog:1.1995
--- kaffe/ChangeLog:1.1994  Tue Feb 10 16:47:19 2004
+++ kaffe/ChangeLog Tue Feb 10 17:16:37 2004
@@ -1,5 +1,13 @@
 2004-02-10  Dalibor Topic [EMAIL PROTECTED]
 
+   * config/m68k/netbsd1/jit-md.h:
+   Added missing includes for m68k_sync_icache.
+
+   * kaffe/kaffevm/intrp/machine.c:
+   Updated copyright notice.
+
+2004-02-10  Dalibor Topic [EMAIL PROTECTED]
+
* kaffe/kaffevm/intrp/machine.c:
Include support.h to avoid compiler warning.
Order includes alphabetically.
Index: kaffe/config/m68k/netbsd1/jit-md.h
diff -u kaffe/config/m68k/netbsd1/jit-md.h:1.8 kaffe/config/m68k/netbsd1/jit-md.h:1.9
--- kaffe/config/m68k/netbsd1/jit-md.h:1.8  Thu Jan 22 19:27:22 2004
+++ kaffe/config/m68k/netbsd1/jit-md.h  Tue Feb 10 17:16:38 2004
@@ -21,6 +21,12 @@
 /**/
 #include m68k/jit.h
 
+/*
+ * Include m68k_sync_icache prototypes
+ */
+#include sys/types.h
+#include m68k/sync_icache.h
+ 
 /**/
 /* Define where addresses are returned.  */
 /**/
Index: kaffe/kaffe/kaffevm/intrp/machine.c
diff -u kaffe/kaffe/kaffevm/intrp/machine.c:1.40 
kaffe/kaffe/kaffevm/intrp/machine.c:1.41
--- kaffe/kaffe/kaffevm/intrp/machine.c:1.40Tue Feb 10 16:47:22 2004
+++ kaffe/kaffe/kaffevm/intrp/machine.c Tue Feb 10 17:16:39 2004
@@ -5,6 +5,9 @@
  * Copyright (c) 1996, 1997
  * Transvirtual Technologies, Inc.  All rights reserved.
  *
+ * Copyright (c) 2004
+ * Kaffe.org contributors, see ChangeLog for details.  All rights reserved.
+ *
  * See the file license.terms for information on usage and redistribution
  * of this file.
  */

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (dalibor): Fixed compiler warning on m68k-netbsd

2004-02-10 Thread Kaffe CVS
PatchSet 4412 
Date: 2004/02/10 17:21:58
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fixed compiler warning on m68k-netbsd

2004-02-10  Dalibor Topic [EMAIL PROTECTED]

* config/m68k/jit3-m68k.def:
Removed explicit definition of KAFFE_VMDEBUG.

Members: 
ChangeLog:1.1995-1.1996 
config/m68k/jit3-m68k.def:1.5-1.6 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1995 kaffe/ChangeLog:1.1996
--- kaffe/ChangeLog:1.1995  Tue Feb 10 17:16:37 2004
+++ kaffe/ChangeLog Tue Feb 10 17:21:58 2004
@@ -1,5 +1,10 @@
 2004-02-10  Dalibor Topic [EMAIL PROTECTED]
 
+   * config/m68k/jit3-m68k.def:
+   Removed explicit definition of KAFFE_VMDEBUG.
+
+2004-02-10  Dalibor Topic [EMAIL PROTECTED]
+
* config/m68k/netbsd1/jit-md.h:
Added missing includes for m68k_sync_icache.
 
Index: kaffe/config/m68k/jit3-m68k.def
diff -u kaffe/config/m68k/jit3-m68k.def:1.5 kaffe/config/m68k/jit3-m68k.def:1.6
--- kaffe/config/m68k/jit3-m68k.def:1.5 Sun May 11 16:52:43 2003
+++ kaffe/config/m68k/jit3-m68k.def Tue Feb 10 17:22:00 2004
@@ -4,11 +4,12 @@
  * Copyright (c) 1996, 1997
  * Transvirtual Technologies, Inc.  All rights reserved.
  *
+ * Copyright (c) 2004
+ *  Kaffe.org contributors, see ChangeLogs for details.  All rights reserved.
+ *
  * See the file license.terms for information on usage and redistribution 
  * of this file. 
  */
-
-#defineKAFFE_VMDEBUG
 
 #include assert.h
 #include string.h

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] kafffe and tomcat run ok on sh3 (superh)!

2004-02-10 Thread Matthias Pfisterer
Dalibor Topic wrote:
Kaffe 1.1.3 should be able to run tomcat 4 fine. Tomcat4 uses ant for 
compiling the JSP sources, so that a simple -Dbuild.properties=kjc will 
I think it's -Dbuild.compiler=kjc

Matthias

make it work with kjc. See 
http://www.jspwiki.org/Wiki.jsp?page=RunningTomcatOnKaffe for details.

So, now that you've got tomcat3 running on kaffe 1.0.7, you could try 
getting 1.1.3 to run on superh-linux and tomcat4 on it. ;)



--
Matthias Pfisterer  Matthias [dot] Pfisterer [at] web [dot] de
Reuchlinstrasse 28  phone ++49-711-62 87 12
D-70176 Stuttgart   (in Deutschland 0711-62 87 12)
GERMANY
Work like you don't need the money.
Love like you've never been hurt.
Dance like nobody is watching.
Java Sound Resources (examples, FAQ, applications):
http://www.jsresources.org/
Tritonus, the open source implementation of the Java Sound API:
http://www.tritonus.org/
--
___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] kafffe and tomcat run ok on sh3 (superh)!

2004-02-10 Thread Dalibor Topic
Matthias Pfisterer wrote:
Dalibor Topic wrote:

Kaffe 1.1.3 should be able to run tomcat 4 fine. Tomcat4 uses ant for 
compiling the JSP sources, so that a simple -Dbuild.properties=kjc will 


I think it's -Dbuild.compiler=kjc
Thanks, Matthias, good catch. that should teach me not to answer mails 
before I had a cup of coffee ;)

cheers,
dalibor topic
___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] kaffe + XMLRPC resolved

2004-02-10 Thread Mark Maxham
I got the latest sources from CVS, and the problem with 
gnu.java.net.protocol.https.Connection was fixed.



___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] make check results report

2004-02-10 Thread Ito Kazumitsu
 : == Ito Kazumitsu [EMAIL PROTECTED] writes:

: : Today's make check showed:
: : 
: : 2 of 144 tests failed
: : Please report to [EMAIL PROTECTED]
: : 
: : Tests that failed are:
: : FAIL: TestSerialVersions.java
: : FAIL: TestSerialFields.java
: 
: My last patch to libraries/javalib/java/io/ObjectInputStream.java
: will solve the problem, at least of TestSerialFields.java.

The effect of the patch was at least and TestSerialVersions.java
still fails.  But at least ArrayIndexOutOfBoundsException disappeared
from the results of TestSerialVersions.java.

By the way, with Sun's JDK, the output of TestSerialVersions.java
looks completely different:

Generating canonical stream
  Serializing TestSerialVersions$Test0001
Serialization exception: java.lang.IllegalAccessException
java.lang.NullPointerException
at TestSerialVersions.checkClass(TestSerialVersions.java:370)
at TestSerialVersions.main(TestSerialVersions.java:399)
Exception in thread main 

I do not know which is the right output.

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] bug report - intsDisabled assertion fails during make

2004-02-10 Thread Andy Raffle
Hi. I hope this is the right place to post this. I have encountered a bug 
which only affects Kaffe 1.1.2 and above, causing builds to fail on an 
assertion, as follows (from 1.1.2)...

Making all in compile_time
make[3]: Entering directory 
`/root/install/kaffe-1.1.2/test/regression/compile_time'
lt-kaffe-bin: exception.c:306: dispatchException: Assertion `!intsDisabled()' 
failed.
make[3]: *** [ClassToInterface.class] Aborted

Hardware: HP9000/898 K370, PA-RISC 8200 (HPPA arch)
OS: Debian 3.0 (Woody), Linux 2.4.21-32

Andy.

-- 
Andy Raffle
Digital Species Ltd
www.digitalspecies.com

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe