Is there a way to tell that a pointer's memory assignment has been deallocated? I am just starting out in C and I think I am finally starting to understand the intricacies of memory management in C.

So for example:

char* pointer;
pointer = malloc(1024);

/* do stuff */

free(pointer);

/* test memory allocation after this point */

I know that the pointer will still store the memory address until I set pointer = NULL - but is there a way to test that the pointer no longer references memory I can use, without having to set it to NULL first?

The reason I want to do this is that I have a bunch of unit tests for my C program, and one of them ensures that there are no orphaned pointers after I call a special function which performs a cleanup of a couple of linked lists. Looking at the debugger I can see that my cleanup function is working, but I would like a way to test the pointers so I can wrap them in a unit test assertion.

link|improve this question

2  
Nope, AFAIK, you can't check if it's deallocated or not. – muntoo May 20 '11 at 1:08
Similar (but not quite a duplicate) question: stackoverflow.com/questions/1898823/… – dmckee May 20 '11 at 1:34
feedback

3 Answers

up vote 5 down vote accepted

There is no standardized memory management that tells you whether or not any given address is part of a currently allocated memory block.

For the purposes of a unit test, you could create a global map that keeps track of every allocation, so you make every allocation go through your custom malloc function that adds an entry to the map in debug builds and removes it again in free.

link|improve this answer
I don't understand by what you mean by a "global map that keeps track of every allocation". How would I go about that? – Ash May 20 '11 at 1:51
1  
Write any kind of map, like a hash map, that basically stores a bunch of pointers and allows you to quickly look up whether or not a pointer is in this map. In the most primitive form, that could be a simple pre-allocated array that you iterate through. Or it could be a hash map, a tree, you name it. Bottom line - you want to store a list of pointers that had been allocated with malloc, and remove a pointer once you call free on it. – EboMike May 20 '11 at 6:00
feedback

You could always link against an instrumented version of the libraries (say electric fence) for the purposes of unit testing.

Not ideal because you introduce a difference in the production and testing environments.

And some systems may provide sufficient instrumentation in their version of the standard library. For instance the Mac OS 10.5 library supports calling abort (3) on double frees, so if your unit tester can trap signals you are home free.


Shameless and pointless self promotion: my little toy c unit testing framework can trap signals.

link|improve this answer
You beat me to it. I was about to suggest integrating Valgrind (valgrind.org) into the test flow. – nall May 20 '11 at 1:31
@nall: That may be a distinct suggestion, though it has a similar flavor. – dmckee May 20 '11 at 1:32
I don't think it's practical in this scenario to use an external library or such. But a good suggestion. – Ash May 20 '11 at 1:52
feedback

Neither standard C nor POSIX (I think) provides a way to check that. Your specific operating system might have some sort of elaborate black magic for doing this that is only revealed to the Inner Circle of System Programmers, though.

link|improve this answer
Why is that? It seems like a perfectly reasonable thing to want to do isn't it? – Ash May 20 '11 at 1:53
ok...so can i test that the data at the memory address ISNT of the type it should be? In my specific real world case, the pointer points to a struct, can i dereference the pointer and test if the memory address no longer contains the struct that it should. Ie, if the pointer no longer references a memory location of the correct type, its be deallocated.? – Ash May 20 '11 at 1:55
1  
The actual memory can contain exactly the same data before and after being freed. It could also potentially be unmapped during free (where your unit test could cause a page fault/crash if it tested the contents of previously freed memory). – Brendan May 20 '11 at 3:51
ahh ok thanks. :) – Ash May 20 '11 at 4:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.