hello, I'm sure you can help me there....
I used dmalloc quite happily in singlethreaded program, but
I run in quite a problem in multithreaded one (even just this simple:
main() {
void *leak = malloc(666);
};
linked as follows:
cc -o dm.o -lpthread -ldmallocth -o dm
when I run ./dm it just hangs consuming no CPU. (no core, no exception)
I experimented with setting Lock-On to different values 0-1000 but
it behaves the same way...
Thank you for your help.