[kaffe] CVS kaffe (robilad): Doubled thread stack size on i386 to make very recursive applications run better
Kaffe CVS
cvs-commits at kaffe.org
Mon Dec 13 17:34:39 PST 2004
PatchSet 5635
Date: 2004/12/14 01:30:30
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Doubled thread stack size on i386 to make very recursive applications run better
2004-12-14 Dalibor Topic <robilad at kaffe.org>
* config/i386/threads.h:
(THREADSTACKSIZE) doubled to 128k with jit, and 256 with intrp
to hopefully make dom2 test suite run on gump.
Members:
ChangeLog:1.3180->1.3181
config/i386/threads.h:1.4->1.5
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3180 kaffe/ChangeLog:1.3181
--- kaffe/ChangeLog:1.3180 Tue Dec 14 00:38:18 2004
+++ kaffe/ChangeLog Tue Dec 14 01:30:30 2004
@@ -1,5 +1,11 @@
2004-12-14 Dalibor Topic <robilad at kaffe.org>
+ * config/i386/threads.h:
+ (THREADSTACKSIZE) doubled to 128k with jit, and 256 with intrp
+ to hopefully make dom2 test suite run on gump.
+
+2004-12-14 Dalibor Topic <robilad at kaffe.org>
+
* kaffe/kaffevm/external.c:
Improved initial native library lookup debug output.
Index: kaffe/config/i386/threads.h
diff -u kaffe/config/i386/threads.h:1.4 kaffe/config/i386/threads.h:1.5
--- kaffe/config/i386/threads.h:1.4 Fri Oct 22 23:41:09 2004
+++ kaffe/config/i386/threads.h Tue Dec 14 01:30:34 2004
@@ -16,9 +16,9 @@
* Set a default size for the stack.
*/
#if defined(INTERPRETER)
-#define THREADSTACKSIZE (128 * 1024)
+#define THREADSTACKSIZE (256 * 1024)
#else
-#define THREADSTACKSIZE (64 * 1024)
+#define THREADSTACKSIZE (128 * 1024)
#endif
/*
More information about the kaffe
mailing list