Lines Matching defs:sched_slice
128 static int sched_slice = 12; /* Thread run time before rescheduling. */
198 new_val = period * sched_slice;
204 sched_slice = imax(1, (new_val + period / 2) / period);
205 hogticks = imax(1, (2 * hz * sched_slice + realstathz / 2) /
219 SYSCTL_INT(_kern_sched, OID_AUTO, slice, CTLFLAG_RW, &sched_slice, 0,
654 sched_slice = realstathz / 10; /* ~100ms */
655 hogticks = imax(1, (2 * hz * sched_slice + realstathz / 2) /
675 td_get_sched(&thread0)->ts_slice = sched_slice;
700 /* Convert sched_slice from stathz to hz. */
701 return (imax(1, (sched_slice * hz + realstathz / 2) / realstathz));
743 ts->ts_slice = sched_slice;
1144 ts->ts_slice = sched_slice;