hi ,
what does memory underflow exactly mean??
Printable View
hi ,
what does memory underflow exactly mean??
that you (for example) used too much memory than it was given to you....
it would be easier if you search the board for your "memory overflow" ...........you'll get a lot of hits
>that you (for example) used too much memory than it was given
>to you....
That is memory overflow, newbie_grg asked about underflow. Memory underflow can for example happen if you try to access a structure which does not exist.
For example:
Code:void function (datatype *my_data)
{
if (my_data)
{
int var = my_data->variable;
}
else
{
// underflow situation
}
}
ohhhh yeah..............how did I miss that....??? hmmm
i guess that's what happens if you sit in front of the monitor for too long...