I have done a bit of iOS development lately. While trying to get myself familiarized with the new platform, I came across this book titled “Programming iOS 4”. I skimmed through some sections and found this paragraph: You should not use a view controller in any other way. It is not, for example, appropriate to […]
Archives for June 2011
Scripted Debug Using GDB To Find Memory Leak
June 29, 2011 by 4 Comments
I recently ran test into some hard to find memory leaks. The program only runs on Linux. The memory leaks are detected using a custom memory allocator (using an atomic counter for allocation/deallocation size). In single thread mode, the program terminated without leaking, but running in multithread mode resulted in 1.7 to 4 KB of […]