]> git.pond.sub.org Git - empserver/blobdiff - src/lib/lwp/lwp.c
Update copyright notice
[empserver] / src / lib / lwp / lwp.c
index e4934b7c63b77475d40b477a4e9d7fa24ad6b64d..3fc385d6a82e7701687874ae622c740df6bddb22 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1994-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1994-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *  Copyright (C) 1991-3 Stephen Crane
  *
@@ -28,7 +28,7 @@
  *  lwp.c: lightweight process creation, destruction and manipulation
  *
  *  Known contributors to this file:
- *     Markus Armbruster, 2004-2010
+ *     Markus Armbruster, 2004-2013
  */
 
 #include <config.h>
@@ -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;
@@ -428,4 +428,3 @@ lwpSetName(struct lwpProc *proc, char *name)
 
     proc->name = strdup(name);
 }
-