Loading...
--- libmalloc/libmalloc-657.80.3/src/vm.h
+++ libmalloc/libmalloc-792.80.2/src/vm.h
@@ -39,12 +39,28 @@
 extern uint64_t malloc_entropy[2];
 
 #if !MALLOC_TARGET_EXCLAVES
+MALLOC_NOEXPORT
+extern volatile uintptr_t entropic_base;
+
 static inline bool
 mvm_aslr_enabled(void)
 {
 	extern struct mach_header __dso_handle;
 	return _dyld_get_image_slide(&__dso_handle);
 }
+
+struct mvm_guarded_range_config_s {
+	mach_vm_address_t base_address;
+	size_t            size;
+	mach_vm_address_t carveout_address;
+};
+
+MALLOC_NOEXPORT
+extern struct mvm_guarded_range_config_s malloc_guarded_range_config;
+
+MALLOC_NOEXPORT
+void
+mvm_guarded_range_init(void);
 #endif // !MALLOC_TARGET_EXCLAVES
 
 MALLOC_NOEXPORT
@@ -99,22 +115,22 @@
 void
 mvm_protect_plat(void * __sized_by(size) address, size_t size, unsigned protection, unsigned debug_flags, plat_map_t *map);
 
-#if CONFIG_DEFERRED_RECLAIM
+#if CONFIG_MAGAZINE_DEFERRED_RECLAIM
 MALLOC_NOEXPORT
 kern_return_t
 mvm_deferred_reclaim_init(void);
 
 MALLOC_NOEXPORT
 bool
-mvm_reclaim_mark_used(uint64_t id, mach_vm_address_t ptr, uint32_t size, unsigned int debug_flags);
+mvm_reclaim_mark_used(mach_vm_reclaim_id_t id, mach_vm_address_t ptr, mach_vm_size_t size, unsigned int debug_flags);
 
 MALLOC_NOEXPORT
-uint64_t
-mvm_reclaim_mark_free(vm_address_t ptr, uint32_t size, unsigned int debug_flags);
+mach_vm_reclaim_id_t
+mvm_reclaim_mark_free(mach_vm_address_t ptr, mach_vm_size_t size, unsigned int debug_flags);
 
 MALLOC_NOEXPORT
 bool
-mvm_reclaim_is_available(uint64_t id);
-#endif // CONFIG_DEFERRED_RECLAIM
+mvm_reclaim_is_available(mach_vm_reclaim_id_t id);
+#endif // CONFIG_MAGAZINE_DEFERRED_RECLAIM
 
 #endif // __VM_H