summaryrefslogtreecommitdiff
path: root/src/common/mempool.c
diff options
context:
space:
mode:
authorblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-11 21:51:09 +0000
committerblacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-11 21:51:09 +0000
commitb43920212e20b2169254b567266037f15485a02a (patch)
tree96e92a1ec01f27890796f2cce6ef7678e5177719 /src/common/mempool.c
parent7685ceccfe593b9b06492e8eadc7f0a1fe30076f (diff)
downloadhercules-b43920212e20b2169254b567266037f15485a02a.tar.gz
hercules-b43920212e20b2169254b567266037f15485a02a.tar.bz2
hercules-b43920212e20b2169254b567266037f15485a02a.tar.xz
hercules-b43920212e20b2169254b567266037f15485a02a.zip
Fixed bugreport:5989 map-server crashes.
Bug in Detail: - Uninitialized Critical Section used in Condition Variables.. - Possible Stack Overflow in async allocator Thread when build as Release Fixed by: - Initialize Critical Section for Condition Var's waiter count lock properly - Increased Stack Size of Async. Allocator Thread to 1MB (previously 512KB) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16269 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mempool.c')
-rw-r--r--src/common/mempool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mempool.c b/src/common/mempool.c
index ab401f5e0..35b03034d 100644
--- a/src/common/mempool.c
+++ b/src/common/mempool.c
@@ -156,7 +156,7 @@ void mempool_init(){
l_async_lock = ramutex_create();
l_async_cond = racond_create();
- l_async_thread = rathread_createEx(mempool_async_allocator, NULL, 512*1024, RAT_PRIO_NORMAL);
+ l_async_thread = rathread_createEx(mempool_async_allocator, NULL, 1024*1024, RAT_PRIO_NORMAL);
if(l_async_thread == NULL){
ShowFatalError("mempool_init: cannot spawn Async Allocator Thread.\n");
exit(EXIT_FAILURE);