gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 15 of 15 for funcall:Imalloc (0.01 seconds)
tkernel_2
kernel/tkernel/src/rendezvous.c - 20.8KB - 757 lines
68:         /* Create port control block */
69:         porcb_table = Imalloc((UINT)NUM_PORID * sizeof(PORCB));
70:         if ( porcb_table == NULL ) {
kernel/tkernel/src/semaphore.c - 11.5KB - 475 lines
67:         /* Semaphore control block */
68:         semcb_table = Imalloc((UINT)NUM_SEMID * sizeof(SEMCB));
69:         if ( semcb_table == NULL ) {
kernel/tkernel/src/subsystem.c - 29.4KB - 1,062 lines
107:         /* Create subsystem control block */
108:         ssycb_table = Imalloc((UINT)NUM_SSYID * sizeof(SSYCB));
109:         if ( ssycb_table == NULL ) {
More results from subsystem.c
kernel/tkernel/src/task.c - 8.1KB - 303 lines
74:         /* Allocate TCB area */
75:         tcb_table = Imalloc((UINT)NUM_TSKID * sizeof(TCB));
76:         if ( tcb_table == NULL ) {
kernel/tkernel/src/time_calls.c - 27.4KB - 1,118 lines
237:         /* Create cyclic handler control block */
238:         cyccb_table = Imalloc((UINT)NUM_CYCID * sizeof(CYCCB));
239:         if ( cyccb_table == NULL ) {
More results from time_calls.c