Loading...
src/nano_malloc_common.h libmalloc-166.220.1 libmalloc-425.100.7
--- libmalloc/libmalloc-166.220.1/src/nano_malloc_common.h
+++ libmalloc/libmalloc-425.100.7/src/nano_malloc_common.h
@@ -24,16 +24,8 @@
 #ifndef __NANO_MALLOC_COMMON_H
 #define __NANO_MALLOC_COMMON_H
 
-// Definitions that are common to Nano V1 and Nano V2.
-#if TARGET_OS_OSX || TARGET_OS_SIMULATOR
-#define NANO_PREALLOCATE_BAND_VM 0
-#else // TARGET_OS_OSX || TARGET_OS_SIMULATOR
-#define NANO_PREALLOCATE_BAND_VM 1 // pre-allocate reserved vm range
-#endif // TARGET_OS_OSX || TARGET_OS_SIMULATOR
-
 typedef enum {
 	NANO_NONE	= 0,
-	NANO_V1 	= 1,
 	NANO_V2		= 2,
 } nano_version_t;
 
@@ -46,7 +38,11 @@
 extern unsigned int nano_common_max_magazines;
 
 MALLOC_NOEXPORT
-extern boolean_t nano_common_max_magazines_is_ncpu;
+extern bool nano_common_max_magazines_is_ncpu;
+
+// Index of last region to be allocated
+MALLOC_NOEXPORT
+extern unsigned int nano_max_region;
 
 MALLOC_NOEXPORT
 void
@@ -66,8 +62,16 @@
 		unsigned debug_flags, int vm_page_label, void *base_addr);
 
 MALLOC_NOEXPORT
-boolean_t
+bool
 nano_common_allocate_vm_space(mach_vm_address_t base, mach_vm_size_t size);
+
+MALLOC_NOEXPORT
+bool
+nano_common_reserve_vm_space(mach_vm_address_t base, mach_vm_size_t size);
+
+MALLOC_NOEXPORT
+bool
+nano_common_unprotect_vm_space(mach_vm_address_t base, mach_vm_size_t size);
 
 MALLOC_NOEXPORT
 void