gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 9 of 9 for funcall:is_diswai (0.01 seconds)
tkernel_2
kernel/tkernel/src/eventflag.c - 11.8KB - 477 lines
302:         /* Check wait disable */
303:         if ( is_diswai((GCB*)flgcb, ctxtsk, TTW_FLG) ) {
304:                 ercd = E_DISWAI;
kernel/tkernel/src/mailbox.c - 11.4KB - 462 lines
296:         /* Check receive wait disable */
297:         if ( is_diswai((GCB*)mbxcb, ctxtsk, TTW_MBX) ) {
298:                 ercd = E_DISWAI;
kernel/tkernel/src/mempfix.c - 12.5KB - 498 lines
260:         /* Check wait disable */
261:         if ( is_diswai((GCB*)mpfcb, ctxtsk, TTW_MPF) ) {
262:                 ercd = E_DISWAI;
kernel/tkernel/src/mempool.c - 20.9KB - 791 lines
561:         /* Check wait disable */
562:         if ( is_diswai((GCB*)mplcb, ctxtsk, TTW_MPL) ) {
563:                 ercd = E_DISWAI;
kernel/tkernel/src/messagebuf.c - 18.5KB - 689 lines
388:         /* Check send wait disable */
389:         if ( !in_indp() && is_diswai((GCB*)mbfcb, ctxtsk, TTW_SMBF) ) {
390:                 ercd = E_DISWAI;
More results from messagebuf.c
kernel/tkernel/src/mutex.c - 19.7KB - 703 lines
447:         /* Check wait disable */
448:         if ( is_diswai((GCB*)mtxcb, ctxtsk, TTW_MTX) ) {
449:                 ercd = E_DISWAI;
kernel/tkernel/src/rendezvous.c - 20.8KB - 757 lines
267:                 /* Check rendezvous call wait disable */
268:                 if ( is_diswai((GCB*)porcb, ctxtsk, TTW_CAL) ) {
269:                         ercd = E_DISWAI;
More results from rendezvous.c
kernel/tkernel/src/semaphore.c - 11.5KB - 475 lines
307:         /* Check wait disable */
308:         if ( is_diswai((GCB*)semcb, ctxtsk, TTW_SEM) ) {
309:                 ercd = E_DISWAI;
kernel/tkernel/src/wait.c - 5.4KB - 208 lines
167: {
168:         if ( is_diswai(gcb, ctxtsk, ctxtsk->wspec->tskwait) ) {
169:                 *ctxtsk->wercd = E_DISWAI;