Has anyone experienced any wierdness with allocating memory on a MIPS
Palm-Sized PC? Specifically, I have a situation where allocated memory is
being reallocated. The memory is definitely allocated.
Are there any essential compile / link settings for MIPS and/or PalmPC
which are not explicitly mentioned in the documentation?
Thanks,
Richard
--
Richard Saint
Pocket Systems Ltd
rsa...@pocket.co.uk
> Has anyone experienced any wierdness with allocating memory on a MIPS
> Palm-Sized PC? Specifically, I have a situation where allocated memory is
> being reallocated. The memory is definitely allocated.
I've now found what was causing this.
I had:
delete array
instead of
delete [] array
This obviously screwed up the heap free list. Interestingly heap watcher
did not pick up on this.
Regards,