Searched refs:queue_head (Results 1 - 7 of 7) sorted by relevance

/barrelfish-master/kernel/
H A Dschedule_rr.c133 for (struct dcb *i = kcb_current->queue_head; i; i = i->next)
139 kcb_current->queue_head->prev = kcb_current->queue_tail;
140 kcb_current->queue_tail->next = kcb_current->queue_head;
150 kcb_current->ring_current = kcb_current->queue_head;
H A Dschedule_rbed.c114 if(kcb_current->queue_head == NULL) {
116 kcb_current->queue_head = kcb_current->queue_tail = queue_tail = dcb;
131 for(struct dcb *i = kcb_current->queue_head; i != NULL; prev = i, i = i->next) {
145 kcb_current->queue_head = dcb;
174 if(dcb == kcb_current->queue_head) {
175 kcb_current->queue_head = dcb->next;
176 if(kcb_current->queue_head == NULL) {
183 for(struct dcb *i = kcb_current->queue_head; i != NULL; i = i->next) {
204 for(struct dcb *i = queue_head; i != NULL && i->next != NULL; i = i->next) {
216 for(struct dcb *i = queue_head;
[all...]
H A Dkcb.c87 for (struct dcb *d = kcb->queue_head; d; d = d->next) {
/barrelfish-master/kernel/include/
H A Dkcb.h59 struct dcb *queue_head, *queue_tail; member in struct:kcb
92 printk(LOG_DEBUG, " queue_head = %p\n", kcb_current->queue_head);
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dprintam.c1674 if (queue_head) { \
1678 queue_tail = queue_head = (pword *) hg_alloc_size(2*sizeof(pword));\
1685 register pword *elem = queue_head; \
1688 queue_head = elem[1].val.ptr; \
1692 #define EmptyQueue() (!queue_head)
1740 pword *queue_head = (pword *) 0; local
H A Dbip_serialize.c126 if (queue_head) { \
130 queue_tail = queue_head = (pword *) hg_alloc_size(2*sizeof(pword));\
137 register pword *elem = queue_head; \
142 queue_head = elem[1].val.ptr; \
146 #define EmptyQueue() (!queue_head)
310 pword *queue_head = (pword *) 0; local
/barrelfish-master/tools/schedsim/
H A Dsimulator.c75 struct dcb *queue_head, *queue_tail; member in struct:kcb

Completed in 154 milliseconds