server: Grow small thread stacks from 50 KiB to 64 KiB

Affected are threads AcceptPlayers, MarketUpdate, shutdownSeq.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2013-08-17 17:57:40 +02:00
parent 8330b6f322
commit 1a27107bed
3 changed files with 3 additions and 3 deletions

View file

@ -71,7 +71,7 @@ shutdown_initiate(int mins_from_now)
mins_from_now);
empth_wakeup(shutdown_thread);
} else {
shutdown_thread = empth_create(shutdown_sequence, 50 * 1024, 0,
shutdown_thread = empth_create(shutdown_sequence, 65536, 0,
"shutdownSeq", NULL);
if (!shutdown_thread) {
shutdown_pending = 0;