-#if DEVELOPMENT || DEBUG
- if (kill_on_no_paging_space == TRUE) {
- /*
- * We found the largest process that has a process policy i.e. one of
- * PC_KILL, PC_SUSP, PC_THROTTLE.
- * But we are in a mode where we will kill it regardless of its policy.
- */
- printf("low swap: killing largest process with pid %d (%s) and size %llu MB\n", p->p_pid, p->p_comm, (nps.pcs_max_size/MB_SIZE));
- psignal(p, SIGKILL);
-
- proc_rele(p);
-
- return 1;
- }
-#endif /* DEVELOPMENT || DEBUG */
-