this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Workaround for LLDB and Darling's shared libs

+4
+4
src/dyld/src/dyld_process_info.cpp
··· 71 71 dyld_process_info_base(unsigned imageCount, size_t totalSize); 72 72 void* operator new (size_t, void* buf) { return buf; } 73 73 74 + #ifndef DARLING 74 75 static bool inCache(uint64_t addr) { return (addr > SHARED_REGION_BASE) && (addr < SHARED_REGION_BASE+SHARED_REGION_SIZE); } 76 + #else 77 + static bool inCache(uint64_t addr) { return false; } 78 + #endif 75 79 kern_return_t addImage(task_t task, bool sameCacheAsThisProcess, uint64_t imageAddress, uint64_t imagePath, const char* imagePathLocal); 76 80 kern_return_t addDyldImage(task_t task, uint64_t dyldAddress, uint64_t dyldPathAddress, const char* localPath); 77 81