gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 15 for funcall:Imalloc (0.02 seconds)
tkernel_2
driver/tef_em1d/console/src/console_drv.c - 31.8KB - 957 lines
143:  */
144: #define Malloc(len)     (void*)Imalloc(len)
145: #define Free(ptr)       Ifree((void*)(ptr))
driver/tef_em1d/console/src/line_drv.h - 5.7KB - 161 lines
145: /* Get/Release memory*/
146: #define Malloc(len)     (void*)Imalloc(len)
147: #define Free(ptr)       Ifree((void*)(ptr))
kernel/sysmgr/src/device.c - 22.4KB - 827 lines
132:         /* Generate device registration information table */
133:         DevCBtbl = Imalloc((UINT)num * sizeof(DevCB));
134:         if ( DevCBtbl == NULL ) {
kernel/sysmgr/src/deviceio.c - 35.3KB - 1,328 lines
1278:         /* Generate open management information table */
1279:         OpnCBtbl = Imalloc((UINT)MaxOpnDev * sizeof(OpnCB));
1280:         if ( OpnCBtbl == NULL ) {
More results from deviceio.c
kernel/tkernel/src/eventflag.c - 11.8KB - 477 lines
66:         /* Create event flag control block */
67:         flgcb_table = Imalloc((UINT)NUM_FLGID * sizeof(FLGCB));
68:         if ( flgcb_table == NULL ) {
kernel/tkernel/src/mailbox.c - 11.4KB - 462 lines
76:         /* Create mailbox control block */
77:         mbxcb_table = Imalloc((UINT)NUM_MBXID * sizeof(MBXCB));
78:         if ( mbxcb_table == NULL ) {
kernel/tkernel/src/mempfix.c - 12.5KB - 498 lines
77:         /* Create fixed size memory pool control block */
78:         mpfcb_table = Imalloc((UINT)NUM_MPFID * sizeof(MPFCB));
79:         if ( mpfcb_table == NULL ) {
kernel/tkernel/src/mempool.c - 20.9KB - 791 lines
72:         /* Create variable size memory pool control block */
73:         mplcb_table = Imalloc((UINT)NUM_MPLID * sizeof(MPLCB));
74:         if ( mplcb_table == NULL ) {
kernel/tkernel/src/messagebuf.c - 18.5KB - 689 lines
79:         /* Create message buffer control block */
80:         mbfcb_table = Imalloc((UINT)NUM_MBFID * sizeof(MBFCB));
81:         if ( mbfcb_table == NULL ) {
More results from messagebuf.c
kernel/tkernel/src/mutex.c - 19.7KB - 703 lines
73:         /* Create mutex control block */
74:         mtxcb_table = Imalloc((UINT)NUM_MTXID * sizeof(MTXCB));
75:         if ( mtxcb_table == NULL ) {