From a0e8d02d093e01fdadf8a16bc86fe18b0c4e82c3 Mon Sep 17 00:00:00 2001 From: rsc Date: Sun, 23 Jan 2005 16:02:04 +0000 Subject: Apparently SuSE 9.1's X distribution uses even bigger buffers than the standard ones. 64kB appears to be enough for a stack in that case, but let's just go nuts and make the stacks enormous, so that it takes a few more doublings of X's stack needs before we run into this problem again. The VM system should take care of not actually using most of the memory anyway. --- src/libdraw/x11-itrans.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/libdraw/x11-itrans.c') diff --git a/src/libdraw/x11-itrans.c b/src/libdraw/x11-itrans.c index f1c72ee9..8b1c1376 100644 --- a/src/libdraw/x11-itrans.c +++ b/src/libdraw/x11-itrans.c @@ -21,7 +21,8 @@ __xtoplan9kbd(XEvent *e) if(e->xany.type != KeyPress) return -1; - needstack(20*1024); /* X has some *huge* buffers in openobject */ + needstack(64*1024); /* X has some *huge* buffers in openobject */ + /* and they're even bigger on SuSE */ XLookupString((XKeyEvent*)e,NULL,0,&k,NULL); if(k == XK_Multi_key || k == NoSymbol) return -1; -- cgit v1.2.3