This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Stack size
- From: Tom Tromey <tromey at redhat dot com>
- To: "Steen Jansdal" <steen at jansdal dot dk>
- Cc: <java at gcc dot gnu dot org>
- Date: 05 Dec 2001 11:16:30 -0700
- Subject: Re: Stack size
- References: <055901c17da0$e403faf0$3f01a8c0@steen>
- Reply-to: tromey at redhat dot com
>>>>> "Steen" == Steen Jansdal <steen@jansdal.dk> writes:
Steen> Newbie question:
Steen> What is the stack size for each thread?
Steen> Is it possible to change the stack size on
Steen> a per-thread basis?
libgcj doesn't decide these things. It simply makes a thread using
the appropriate OS call, and the OS decides.
Tom