| 31 | struct task_struct *current = ¤t_task; |
| 32 | |
| 33 | void *kzalloc(int size, int flags) |
| 34 | { |
| 35 | void *buffer = kmalloc(size, flags); |
| 36 | if (buffer) { |
| 37 | memset(buffer, 0, size); |
| 38 | } |
| 39 | return buffer; |
| 40 | } |
| 41 | |
| 42 | // |
| 43 | // slab routines |
no outgoing calls
no test coverage detected