Re: [kaffe] CVS kaffe (hkraemer): minor fixes

2004-02-08 Thread Dalibor Topic
Hi Helmer,

Kaffe CVS wrote:
+   * kaffe/kaffevm/intrp/machine.c
+   (runVirtualMachine): fix throwing of stackoverflow exception
+
thanks for catching that one, I must have misunderstood the code.

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


[kaffe] CVS kaffe (dalibor): Fixed gcc warning

2004-02-08 Thread Kaffe CVS
PatchSet 4401 
Date: 2004/02/08 16:06:23
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fixed gcc warning

2004-02-08  Dalibor Topic [EMAIL PROTECTED]

* kaffe/kaffevm/mem/gc-incremental.c
(gcClearCounts, gcDumpCounts): Fixed gcc compiler warning
about unused functions when user compiled without debugging
enabled.

Members: 
ChangeLog:1.1985-1.1986 
kaffe/kaffevm/mem/gc-incremental.c:1.70-1.71 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1985 kaffe/ChangeLog:1.1986
--- kaffe/ChangeLog:1.1985  Sun Feb  8 15:34:53 2004
+++ kaffe/ChangeLog Sun Feb  8 16:06:23 2004
@@ -1,6 +1,13 @@
 2004-02-08  Dalibor Topic [EMAIL PROTECTED]
 
* kaffe/kaffevm/mem/gc-incremental.c
+   (gcClearCounts, gcDumpCounts): Fixed gcc compiler warning
+   about unused functions when user compiled without debugging 
+   enabled.
+
+2004-02-08  Dalibor Topic [EMAIL PROTECTED]
+
+   * kaffe/kaffevm/mem/gc-incremental.c
(gcMalloc): Fixed compiler warning about unused variable.
 
 2004-02-08  Dalibor Topic [EMAIL PROTECTED]
Index: kaffe/kaffe/kaffevm/mem/gc-incremental.c
diff -u kaffe/kaffe/kaffevm/mem/gc-incremental.c:1.70 
kaffe/kaffe/kaffevm/mem/gc-incremental.c:1.71
--- kaffe/kaffe/kaffevm/mem/gc-incremental.c:1.70   Sun Feb  8 15:34:55 2004
+++ kaffe/kaffe/kaffevm/mem/gc-incremental.cSun Feb  8 16:06:25 2004
@@ -467,7 +467,7 @@
}
 }
 
-#ifdef KAFFE_VMDEBUG
+#if !(defined(NDEBUG) || !defined(KAFFE_VMDEBUG))
 static int
 gcClearCounts(Hjava_lang_Class *c, void *_)
 {
@@ -482,7 +482,7 @@
dprintf(%7d %s\n, c-live_count,  c-name-data);
return 0;
 }
-#endif
+#endif /* !(defined(NDEBUG) || !defined(KAFFE_VMDEBUG)) */
 
 /*
  * The Garbage Collector sits in a loop starting a collection, waiting

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


[kaffe] CVS kaffe (dalibor): Fixed gcc warning

2004-02-08 Thread Kaffe CVS
PatchSet 4402 
Date: 2004/02/08 16:29:14
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fixed gcc warning

2004-02-08  Dalibor Topic [EMAIL PROTECTED]

* kaffe/kaffevm/stringParsing.c
(skipChars, skipSpace): Changed parameter types to unsigned char
to fix compiler warning on sparc-solaris2 due to chars being passed
to isspace().

Members: 
ChangeLog:1.1986-1.1987 
kaffe/kaffevm/stringParsing.c:1.5-1.6 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1986 kaffe/ChangeLog:1.1987
--- kaffe/ChangeLog:1.1986  Sun Feb  8 16:06:23 2004
+++ kaffe/ChangeLog Sun Feb  8 16:29:14 2004
@@ -1,5 +1,12 @@
 2004-02-08  Dalibor Topic [EMAIL PROTECTED]
 
+   * kaffe/kaffevm/stringParsing.c
+   (skipChars, skipSpace): Changed parameter types to unsigned char
+   to fix compiler warning on sparc-solaris2 due to chars being passed
+   to isspace().
+
+2004-02-08  Dalibor Topic [EMAIL PROTECTED]
+
* kaffe/kaffevm/mem/gc-incremental.c
(gcClearCounts, gcDumpCounts): Fixed gcc compiler warning
about unused functions when user compiled without debugging 
Index: kaffe/kaffe/kaffevm/stringParsing.c
diff -u kaffe/kaffe/kaffevm/stringParsing.c:1.5 kaffe/kaffe/kaffevm/stringParsing.c:1.6
--- kaffe/kaffe/kaffevm/stringParsing.c:1.5 Wed Jun 25 08:56:45 2003
+++ kaffe/kaffe/kaffevm/stringParsing.c Sun Feb  8 16:29:15 2004
@@ -431,7 +431,7 @@
 }
 
 static
-char *skipChars(char *str, char *str_end)
+char *skipChars(unsigned char *str, unsigned char *str_end)
 {
assert(str != 0);
assert(str_end != 0);
@@ -444,7 +444,7 @@
 }
 
 static
-char *skipSpace(char *str, char *str_end)
+char *skipSpace(unsigned char *str, unsigned char *str_end)
 {
assert(str != 0);
assert(str_end != 0);

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


[kaffe] CVS kaffe (dalibor): Fix for make dist

2004-02-08 Thread Kaffe CVS
PatchSet 4406 
Date: 2004/02/09 00:44:32
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fix for make dist

2004-02-08  Dalibor Topic [EMAIL PROTECTED]

* Makefile.am (DIST_SUBDIRS): Removed intl.

Members: 
ChangeLog:1.1990-1.1991 
Makefile.am:1.61-1.62 
Makefile.in:1.142-1.143 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1990 kaffe/ChangeLog:1.1991
--- kaffe/ChangeLog:1.1990  Mon Feb  9 00:26:37 2004
+++ kaffe/ChangeLog Mon Feb  9 00:44:32 2004
@@ -1,5 +1,9 @@
 2004-02-08  Dalibor Topic [EMAIL PROTECTED]
 
+   * Makefile.am (DIST_SUBDIRS): Removed intl.
+
+2004-02-08  Dalibor Topic [EMAIL PROTECTED]
+
* Makefile.am (EXTRA_DIST): Removed patches to libtool.
 
 2004-02-08  Dalibor Topic [EMAIL PROTECTED]
Index: kaffe/Makefile.am
diff -u kaffe/Makefile.am:1.61 kaffe/Makefile.am:1.62
--- kaffe/Makefile.am:1.61  Mon Feb  9 00:26:37 2004
+++ kaffe/Makefile.am   Mon Feb  9 00:44:33 2004
@@ -16,7 +16,7 @@
 
 SUBDIRS = . config include replace libltdl libraries/clib libraries/extensions kaffe 
libraries/javalib test po
 
-DIST_SUBDIRS = . config include replace libltdl intl kaffe libraries test po
+DIST_SUBDIRS = . config include replace libltdl kaffe libraries test po
 
 EXTRA_DIST = \
ChangeLog.1 \
Index: kaffe/Makefile.in
diff -u kaffe/Makefile.in:1.142 kaffe/Makefile.in:1.143
--- kaffe/Makefile.in:1.142 Mon Feb  9 00:26:37 2004
+++ kaffe/Makefile.in   Mon Feb  9 00:44:33 2004
@@ -328,7 +328,7 @@
 ACLOCAL_AMFLAGS = -I m4
 AUTOMAKE_OPTIONS = foreign 1.3e
 SUBDIRS = . config include replace libltdl libraries/clib libraries/extensions kaffe 
libraries/javalib test po
-DIST_SUBDIRS = . config include replace libltdl intl kaffe libraries test po
+DIST_SUBDIRS = . config include replace libltdl kaffe libraries test po
 EXTRA_DIST = \
ChangeLog.1 \
ChangeLog.2 \

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


[kaffe] 1.1.4 Release on Monday

2004-02-08 Thread Jim Pick
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).

Cheers,

 - Jim

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