Jan-Simon Möller wrote: > We encontered problems with the low default value for the stacksize in > usermode (ok, whats "low"). > For environments like scratchbox, its hard to use "-s" as qemu is called by > binfmt mechanism. > The attached patch makes this configurable at compile-time.
Note, this will only change the stack size for the main thread, at least with LinuxThreads. Other thread stacks are allocated by the pthread (LinuxThreads or NPTL), and their stack size is changed by pthread_attr_setstacksize instead. -- Jamie