table of contents
other versions
- wheezy-backports 3.16.39-1+deb8u1~bpo70+1
- jessie 3.16.43-2
__CLEAR_USER(9) | Memory Management in Linux | __CLEAR_USER(9) |
NAME¶
__clear_user - Zero a block of memory in user space, with less checking.SYNOPSIS¶
unsigned
long __clear_user(void __user * to,
unsigned long n);
ARGUMENTS¶
toDestination address, in user space.
n
Number of bytes to zero.
DESCRIPTION¶
Zero a block of memory in user space. Caller must check the specified block with access_ok before calling this function. Returns number of bytes that could not be cleared. On success, this will be zero.COPYRIGHT¶
February 2017 | Kernel Hackers Manual 3.16 |