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

@ -69,6 +69,6 @@ market_init(void)
dp = player_new(-1);
if (!dp)
exit_nomem();
if (!empth_create(market_update, 50 * 1024, 0, "MarketUpdate", dp))
if (!empth_create(market_update, 65536, 0, "MarketUpdate", dp))
exit_nomem();
}