- tkernel_2
- driver/tef_em1d/console/src/console_drv.c - 31.8KB - 957 lines
905: /* Delete the all consoles */
906: while (!isQueEmpty(&ConsPort)) {
907: delete_cons((CONSCB*)ConsPort.next);
- driver/tef_em1d/kbpd/src/statmach.c - 10.8KB - 383 lines
247:
248: if ( isQueEmpty(&StatMach.useq) ) return FALSE;
249:
- More results from statmach.c
- kernel/sysmgr/src/device.c - 22.4KB - 827 lines
296: } else {
297: if ( !isQueEmpty(&devcb->openq) ) {
298: /* In use (open) */
- kernel/sysmgr/src/deviceio.c - 35.3KB - 1,328 lines
203:
204: wait = !isQueEmpty(syncq);
205:
- More results from deviceio.c
- kernel/sysmgr/src/imalloc.c - 12.0KB - 441 lines
168: {
169: if ( !isQueEmpty(fq + 1) ) {
170: QUEUE *nq = (fq + 1)->next;
- kernel/tkernel/src/eventflag.c - 11.8KB - 477 lines
295: }
296: if ( (flgcb->flgatr & TA_WMUL) == 0 && !isQueEmpty(&flgcb->wait_queue) ) {
297: /* Disable multiple tasks wait */
- kernel/tkernel/src/mailbox.c - 11.4KB - 462 lines
241:
242: if ( !isQueEmpty(&mbxcb->wait_queue) ) {
243: /* Directly send to receive wait task */
- kernel/tkernel/src/mempfix.c - 12.5KB - 498 lines
329: DISABLE_INTERRUPT;
330: if ( !isQueEmpty(&mpfcb->wait_queue) ) {
331: /* Send memory block to waiting task,
- kernel/tkernel/src/mempool.c - 20.9KB - 791 lines
143: {
144: if ( isQueEmpty(&mplcb->freeque) ) {
145: return 0;
- More results from mempool.c
- kernel/tkernel/src/messagebuf.c - 18.5KB - 689 lines
202:
203: while ( !isQueEmpty(&mbfcb->send_queue) ) {
204: top = (TCB*)mbfcb->send_queue.next;
- More results from messagebuf.c