For example, in Linux, I have a pointer pointing to a task_struct. Later, the task_struct might migrate or deleted. How do I know whether the pointer still points to a task_struct or not?
|
|
It's not possible. Pointers only contain addresses, and generally it's not possible to determine whether or not a given address is "valid". Sometimes you can ask the entity that gave you the pointer to begin with if it's still valid, but that of course depends on the exact details of the entity. The language itself cannot do this. |
|||||||||||
|
|
You don't know, because:
So, C provides no facilities for dealing with this kind of problems, you have to track what happens to stuff you point to on your own. The most you can ask (and it is alreay OS-specific) is to check if the memory page where the structure would reside is still accessible, but usually it's not a particularly useful information. |
|||
|
|
|
Depending on your allocation pattern/luck, you might get a segmentation fault (which of course kills your program)...but that at least would tell you the reference is no longer valid. However, as previously stated, the best way is to track the validity yourself. If you need to keep moving a struct around in memory (rather than just blanking it and reinitializing it at its current location), you could consider using a pointer to a pointer to make the tracking easier. Also, in general, if you want to do checks on your program for this kind of weirdness, I would recommend looking into valgrind. |
|||||||
|
|
It is your responsibility in C to write your code so that you keep track of it. You can use the special value of NULL (representing not pointing to anything), setting the pointer to NULL when you remove (or haven't yet set) whatever it was pointing to & testing for NULL before using it. You might also design your code in a way that the question never comes up. There is no way to query a random pointer value to see if it represents something, just like there is no way to query an int variable to check if the value in it is uninitialized, junk, or the correct result of a computation. It is all a matter of software design and, when necessary, using the value of NULL to designate not set. |
|||
|
|