c_runqueue 69 kern/include/cpu.h struct threadlist c_runqueue; /* Run queue for this cpu */
c_runqueue 185 kern/thread/thread.c threadlist_init(&c->c_runqueue);
c_runqueue 306 kern/thread/thread.c curcpu->c_runqueue.tl_count = 0;
c_runqueue 307 kern/thread/thread.c curcpu->c_runqueue.tl_head.tln_next = NULL;
c_runqueue 308 kern/thread/thread.c curcpu->c_runqueue.tl_tail.tln_prev = NULL;
c_runqueue 453 kern/thread/thread.c threadlist_addtail(&targetcpu->c_runqueue, target);
c_runqueue 577 kern/thread/thread.c if (newstate == S_READY && threadlist_isempty(&curcpu->c_runqueue)) {
c_runqueue 635 kern/thread/thread.c next = threadlist_remhead(&curcpu->c_runqueue);
c_runqueue 869 kern/thread/thread.c total_count += c->c_runqueue.tl_count;
c_runqueue 871 kern/thread/thread.c my_count = c->c_runqueue.tl_count;
c_runqueue 885 kern/thread/thread.c t = threadlist_remtail(&curcpu->c_runqueue);
c_runqueue 896 kern/thread/thread.c while (c->c_runqueue.tl_count < one_share && to_send > 0) {
c_runqueue 927 kern/thread/thread.c threadlist_addtail(&c->c_runqueue, t);
c_runqueue 951 kern/thread/thread.c threadlist_addtail(&curcpu->c_runqueue, t);