- tkernel_2
- kernel/tkernel/src/mutex.c - 19.7KB - 703 lines
93: */
94: #define mtx_waited(mtxcb) ( !isQueEmpty(&(mtxcb)->wait_queue) )
95:
- kernel/tkernel/src/ready_queue.h - 6.0KB - 211 lines
161: }
162: if ( !isQueEmpty(&rq->tskque[priority]) ) {
163: return;
- kernel/tkernel/src/timer.c - 6.2KB - 216 lines
200: /* Execute event that passed occurring time. */
201: while ( !isQueEmpty(&timer_queue) ) {
202: event = (TMEB*)timer_queue.next;
- kernel/tkernel/src/wait.c - 5.4KB - 208 lines
128:
129: while ( !isQueEmpty(wait_queue) ) {
130: tcb = (TCB*)wait_queue->next;
- More results from wait.c
- lib/libdrvif/src/gdrvif.c - 32.8KB - 1,032 lines
231: {
232: UINT ptn = isQueEmpty(&gdi->freeq)? (FREEQ_RD|FREEQ_WR): 0;
233:
- More results from gdrvif.c
- lib/libtk/src/memalloc.c - 10.9KB - 395 lines
129: {
130: if ( !isQueEmpty(fq + 1) ) {
131: QUEUE *nq = (fq + 1)->next;