I face critical problem related malloc and free.
'A' thread allocate memory using malloc. and 'A' thread finish.
'B' thread free memory from allocated 'A' thread but some times program is dead.
so i printed memory address but the same malloc address and free address.
how to debug this situation?
please advice to me.
the example code like this
and dlmalloc metadata also same between malloc and free. and if didn't use thread, also occrued same probleam.
umm... allocated memory content modified secure-world operating system.
Polling function
{
poll((struct pollfd *)&Event, 2 10000);
read(fd, &index, sizeof(uint));
pthread_create(&thread[index], NULL, SomeFunction, (void *)index);
pthread_detach(thread[index]);
}
void SomeFunction(uint *arg)
{
uint command;
command = (uint)arg;
switch(command) {
case malloc:
MallocFunction();
break;
case free:
FreeFunction();
break;
}
Ioctl(fd, .....);
}
MallocFunction()
{
uint mem;
mem = malloc(uint);
}
FreeFunction()
{
uint mem;
GetMallocMemory(&mem);
free((char *)mem);
}
In multithreading, you cannot make guarantees on the order of execution of threads unless they are synchronized. In your case, there are chances of thread de-allocating the memory before another thread allocates it.
The code snippet will help further examining the issue.