lwp: Increase EventHandler's stack size from 16 KiB to 64 KiB
Stack overflow observed on IBM Power 730 Express running AIX 7.1. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
41c8033346
commit
8330b6f322
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ lwpInitSystem(int pri, void **ctxptr, int flags, sigset_t *waitset)
|
|||
LwpDeadQ.head = LwpDeadQ.tail = NULL;
|
||||
lwpInitSigWait(waitset);
|
||||
/* must be lower in priority than us for this to work right */
|
||||
sel = lwpCreate(0, lwpSelect, 16384, flags, "EventHandler", 0,
|
||||
sel = lwpCreate(0, lwpSelect, 65536, flags, "EventHandler", 0,
|
||||
NULL, NULL);
|
||||
lwpInitSelect(sel);
|
||||
return LwpCurrent;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue