Searched refs:vm_page_creation_throttle (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_page.h435 uint32_t vm_page_creation_throttle; /* When to throttle new page creation */
H A Dvm_fault.c538 thread->t_page_creation_count > vm_page_creation_throttle) {
544 if (elapsed_sec <= 6 || (thread->t_page_creation_count / elapsed_sec) >= (vm_page_creation_throttle / 6)) {
557 thread->t_page_creation_count = (vm_page_creation_throttle / 6) * 5;
H A Dvm_resident.c348 uint32_t vm_page_creation_throttle = 0; variable
H A Dvm_pageout.c2661 vm_page_creation_throttle = vm_page_free_target * 3;

Completed in 199 milliseconds