Geri
Geri
previous versions from 2013 crashing too
thankyou for creating and supporting this wonderfull software. i suggest to create a stresstest based on my multithreaded testcases, like the current one, and those i posted before. they are...
hi. was you able to repeat the crash?
i did some test: -both -m64 and -m32 crashing -both with -o3 and without o3, crashing, both -s or/without s crashing so i guess its an algorithmic bug
i wrapped nedrealloc to nedfree and nedmalloc functions in my code until the fix done, no need to hurry
https://gist.github.com/Gerilgfx/6953861 i hope it was this one.
with: #define THREADCACHEMAX 0 test 3 begins... nedmalloc: nedprealloc() called with a block not created by nedmalloc! Aborted
changing: test[i]=realloc_vpool(test[i], iteracio); to: if(test[i]) free_vpool(test[i]); test[i]=malloc_vpool(iteracio); works. i think the bug is precisely in your realloc implementation.
``` if(test[i]) free_vpool(test[i]); test[i]=NULL; test[i]=realloc_vpool(test[i], iteracio); ``` this works too.
``` if(!memsize) { fprintf(stderr, "nedmalloc: nedprealloc() called with a block not created by nedmalloc!\n"); abort(); } ``` changed to: ``` if(!memsize) { fprintf(stderr, "nedmalloc: nedprealloc() called with a block not...