gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:Kmalloc from t2ex (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/include/netbsd/stdlib.h - 10.3KB - 357 lines
144: void* Kmalloc( size_t size );
145: #define malloc(size) Kmalloc(size)
146: #endif
t2ex_source/t2ex/fs/fs/src/fsdefs.h - 18.1KB - 431 lines
327: /* Memory allocation & free */
328: #define fs_malloc(sz)           Kmalloc(sz)
329: #define fs_free(p)              Kfree(p)
t2ex_source/t2ex/network/net/src/netmain/tkn_malloc.c - 4.5KB - 156 lines
89: 
90:         ptr = Kmalloc(size);
91:         if (ptr != NULL) {