]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/malloc.h
xnu-7195.101.1.tar.gz
[apple/xnu.git] / bsd / sys / malloc.h
index 4bf21625fc0e958af9b38a5dd301ec7fdd9254a0..62c2a4085f15e2999af5d3a4b2fe49c57b4fc59c 100644 (file)
@@ -144,6 +144,12 @@ ZONE_VIEW_DECLARE(ZV_NAMEI);
 
 #define M_LAST          129     /* Must be last type + 1 */
 
+/*
+ * If you need accounting consider using
+ * KALLOC_HEAP_DEFINE to define a view.
+ */
+#define KM_SHM          KHEAP_DEFAULT
+
 #define MALLOC(space, cast, size, type, flags)                      \
        ({ VM_ALLOC_SITE_STATIC(0, 0);                              \
        (space) = (cast)__MALLOC(size, type, flags, &site); })