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
This commit is contained in:
Loren J. Rittle 2004-11-30 20:16:37 +00:00 committed by Loren J. Rittle
parent a50c69c459
commit 1ae5bf0223
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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