Results 10 comments of Yuriy Levchenko

When will it be possible to see CMakeLists.txt in the project? Thanks.

Or add define SDL_APP_DELEGATE_CLASS_NAME ``` #ifndef SDL_APP_DELEGATE_CLASS_NAME #define SDL_APP_DELEGATE_CLASS_NAME @"SDLUIKitDelegate" #endif + (NSString *)getAppDelegateClassName { /* subclassing notice: when you subclass this appdelegate, make sure to add * a category...

Yes, at first I tried to go this way and I kind of succeeded. But the patch on the SDL turned out to be very large. It's easier to replace...

> sorry, not sure what you mean, with the swizzling approach you don't need to patch SDL Excuse me too, I didn't quite read your code correctly. Yes, I think...

i create pull request https://github.com/akheron/jansson/pull/478

> How could that be justified to have them being cached? I don't quite understand the question > Could that be a dynamically sized so we get a smaller footprint...

I think in the simplest way, to make a define SENTRY_EXTRA_STATIC_ALLOCATION, and give the opportunity to implement these functions yourself (this is a static version). like extern sentry_malloc & sentry_free...

I think it's easiest with just one define ^^ ``` #ifndef SENTRY_EXTRA_ALLOCATOR void * sentry_malloc(size_t size) { #ifdef WITH_PAGE_ALLOCATOR if (sentry__page_allocator_enabled()) { return sentry__page_allocator_alloc(size); } #endif return malloc(size); } void...

Here is the assembly that caused such problems (the previous one also caused) [crashpad_handler.zip](https://github.com/getsentry/sentry-native/files/7566887/crashpad_handler.zip)