+ @flag
+ def pmalloc_method_simple() -> bool:
+ when (pmalloc_method is "simple")
+
+ @flag
+ def pmalloc_method_buddy() -> bool:
+ when (pmalloc_method is "buddy")
+
+ @flag
+ def pmalloc_method_ncontig() -> bool:
+ when (pmalloc_method is "ncontig")
+
+ @"Allocation policy"
+ def pmalloc_method() -> "simple" | "buddy" | "ncontig":