other versions
- jessie 3.16.56-1+deb8u1
KZFREE(9) | Memory Management in Linux | KZFREE(9) |
NAME¶
kzfree - like kfree but zero memorySYNOPSIS¶
void
kzfree(const void * p);
ARGUMENTS¶
pobject to free memory of
DESCRIPTION¶
The memory of the object p points to is zeroed before freed. If p is NULL, kzfree does nothing.NOTE¶
this function zeroes the whole allocated buffer which can be a good deal bigger than the requested buffer size passed to kmalloc. So be careful when using this function in performance sensitive code.COPYRIGHT¶
May 2018 | Kernel Hackers Manual 3.16 |