[kaffe] CVS kaffe (robilad): doubled stack size on x86 to fix nice bootstrap
Kaffe CVS
cvs-commits at kaffe.org
Thu Mar 31 15:27:00 PST 2005
PatchSet 5630
Date: 2005/03/31 23:21:12
Author: robilad
Branch: HEAD
Tag: (none)
Log:
doubled stack size on x86 to fix nice bootstrap
2005-03-31 Dalibor Topic <robilad at kaffe.org>
* config/i386/threads.h (THREADSTACKSIZE): Doubled to fix
stack size problem with nice's bootstrap.
Members:
ChangeLog:1.3801->1.3802
config/i386/threads.h:1.5->1.6
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3801 kaffe/ChangeLog:1.3802
--- kaffe/ChangeLog:1.3801 Thu Mar 31 23:16:49 2005
+++ kaffe/ChangeLog Thu Mar 31 23:21:12 2005
@@ -1,5 +1,10 @@
2005-03-31 Dalibor Topic <robilad at kaffe.org>
+ * config/i386/threads.h (THREADSTACKSIZE): Doubled to fix
+ stack size problem with nice's bootstrap.
+
+2005-03-31 Dalibor Topic <robilad at kaffe.org>
+
Moved gnu.bytecode into tools.jar to fix problems
with nice's bootstrap.
Index: kaffe/config/i386/threads.h
diff -u kaffe/config/i386/threads.h:1.5 kaffe/config/i386/threads.h:1.6
--- kaffe/config/i386/threads.h:1.5 Tue Dec 14 01:30:34 2004
+++ kaffe/config/i386/threads.h Thu Mar 31 23:21:16 2005
@@ -16,9 +16,9 @@
* Set a default size for the stack.
*/
#if defined(INTERPRETER)
-#define THREADSTACKSIZE (256 * 1024)
+#define THREADSTACKSIZE (512 * 1024)
#else
-#define THREADSTACKSIZE (128 * 1024)
+#define THREADSTACKSIZE (256 * 1024)
#endif
/*
More information about the kaffe
mailing list