Re: Memory leak in Apple's image handling frameworks ?

2023-04-30 Thread Christopher Snowhill via Cocoa-dev
Another possibility is insufficient use of autorelease pools. Even if you are freeing your Objective C objects, if you do not exit the nearest autorelease pool block, they will simply accumulate in the heap. Leak tools will not consider these to be "leaked" memory. > On Apr 30, 2023, at 4:41

Re: Xcode 14 minimum deployment target

2022-10-28 Thread Christopher Snowhill via Cocoa-dev
> On Oct 28, 2022, at 9:29 AM, Markus Spoettl via Cocoa-dev > wrote: > > On 10/28/22 1:40 PM, Mark Allan via Cocoa-dev wrote: >> I've held off upgrading for the same reason. I wonder if it's something to >> do with a >> semantic difference between "is no longer supported" and "is no longer

Re: Mac app hitting per-thread stack size limit

2022-07-14 Thread Christopher Snowhill via Cocoa-dev
> On Jul 14, 2022, at 3:58 AM, Christopher Snowhill wrote: > > My app, Cog (https://cog.losno.co / > https://github.com/losnoco/Cog ) is hitting > the stack size limit of 512 KiB on macOS. I am not even making heavy use of > local

Mac app hitting per-thread stack size limit

2022-07-14 Thread Christopher Snowhill via Cocoa-dev
My app, Cog (https://cog.losno.co / https://github.com/losnoco/Cog ) is hitting the stack size limit of 512 KiB on macOS. I am not even making heavy use of local variables. I am, however, making a lot of Cocoa object allocations and