From: Patrick G. <pge...@wa...> - 2008-07-29 13:06:09
|
> Open the xcode project, build and go. If you fire up instruments and > just monitor the process, see how its leaking memory and incrementally > increasing its footprint - and all its doing is printing a message to > the console! > > Thoughts? I don't see its footprint climbing, #Net remains stable. "Overall bytes" does grow, but it's counting all allocations since startup, including released memory. There is a small leak, 3x16 bytes of GeneralBlock-16. If you have memory problems, you can try to call GC.start to manually start garbage collection. If you don't do that when using Core Image filters, your app's mem profile will grow huge then drop flat when collection happens. -Patrick |