> On Mar 26, 2015, at 9:04 AM, Michael Domino > <[email protected]> wrote: > > This is a 32-bit app, running on 10.10.2. Why would this be happening? Any > ideas? Thanks in advance! > > GuardMalloc[Identity Finder-61163]: Failed to VM allocate 16384 bytes > GuardMalloc[Identity Finder-61163]: Explicitly trapping into debugger!!!
It ran out of address space, i.e. allocated 2GB* of memory. This is entirely possible when using GuardMalloc because it puts every heap allocation on a separate 4k-byte memory page, which tends to hugely increase the amount of memory allocated. I think you’ll need to either turn off GuardMalloc, or run your app as 64-bit. —Jens * IIRC that’s how much address space is available to a 32-bit process. Or it might be 3GB. The rest of the full 4GB is reserved by the kernel.
_______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com This email sent to [email protected]
