Skip to content
Snippets Groups Projects
Commit dbbb8b79 authored by deuce's avatar deuce
Browse files

Increase thread stack size for X thread. This should fix all the Linux

segfaults in the X console.

Also, a few formatting cleanups.
parent 62f79bb5
No related branches found
No related tags found
No related merge requests found
......@@ -689,24 +689,24 @@ video_event(XEvent *ev)
static char buf[128];
KeySym ks;
int n;
int nlock = 0;
int nlock = 0;
u_short scan = 0xffff;
if (!(ev->xkey.state & ShiftMask)) {
if (!(ev->xkey.state & ShiftMask)) {
K1_STATUS &= ~K1_LSHIFT;
K1_STATUS &= ~K1_RSHIFT;
}
if (!(ev->xkey.state & ControlMask)) {
if (!(ev->xkey.state & ControlMask)) {
K1_STATUS &= ~K1_CTRL;
K2_STATUS &= ~K2_LCTRL;
K3_STATUS &= ~K3_RCTRL;
}
if (!(ev->xkey.state & Mod1Mask)) {
if (!(ev->xkey.state & Mod1Mask)) {
K1_STATUS &= ~K1_ALT;
K2_STATUS &= ~K2_LALT;
K3_STATUS &= ~K3_RALT;
}
if (!(ev->xkey.state & LockMask)) {
if (!(ev->xkey.state & LockMask)) {
K2_STATUS &= ~K2_CLOCK;
}
......@@ -1264,7 +1264,7 @@ console_init()
if(mouse_init())
return(-1);
_beginthread(video_async_event,16384,NULL);
_beginthread(video_async_event,1<<16,NULL);
return(0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment