Commit 1ae5bf02 by Loren J. Rittle Committed by Loren J. Rittle

badalloc1.C (arena_size): Bump up to 262144 to support new requirements on FreeBSD 5.

	* g++.old-deja/g++.eh/badalloc1.C (arena_size): Bump up to 262144
	to support new requirements on FreeBSD 5.

From-SVN: r91536
parent a50c69c4
2004-11-30 Loren James Rittle <ljrittle@acm.org>
* g++.old-deja/g++.eh/badalloc1.C (arena_size): Bump up to 262144
to support new requirements on FreeBSD 5.
2004-11-30 Devang Patel <dpatel@apple.com>
PR 18702
......
......@@ -16,8 +16,8 @@ const int arena_size = 256;
#else
#if defined(__FreeBSD__) || defined(__sun__)
// FreeBSD with threads and Solaris with threads require even more
// space at initialization time.
const int arena_size = 131072;
// space at initialization time. FreeBSD 5 now requires over 131072 bytes.
const int arena_size = 262144;
#else
const int arena_size = 32768;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment