Elijah Buck wrote:
Hi,
I'm looking at the code for 4bsd fuzzy run queues in kern_switch.c
The relevant bit:
if (fuzz > 1) {
int count = fuzz;
int cpu = PCPU_GET(cpuid);
struct thread *td2;
td2 = td = TAILQ_FIRST(rqh);
while (count-- && td2) {
if (td->td_lastcpu == c
Hi,
I'm looking at the code for 4bsd fuzzy run queues in kern_switch.c
The relevant bit:
if (fuzz > 1) {
int count = fuzz;
int cpu = PCPU_GET(cpuid);
struct thread *td2;
td2 = td = TAILQ_FIRST(rqh);
while (count-- && td2) {
if (td->td_lastcpu == cpu) {
td
2 matches
Mail list logo