Search | Google it | Results 1 - 3 of 3 for funcall:Kmalloc from t2ex (0.02 seconds) |
144: void* Kmalloc( size_t size ); 145: #define malloc(size) Kmalloc(size) 146: #endif
327: /* Memory allocation & free */ 328: #define fs_malloc(sz) Kmalloc(sz) 329: #define fs_free(p) Kfree(p)
89: 90: ptr = Kmalloc(size); 91: if (ptr != NULL) {