BCOPY(K) UNIX System V BCOPY(K)
Name
bcopy - copies bytes in kernel space
Syntax
int
bcopy(src, dst, cnt)
caddr_t src, dst;
int cnt;
Description
The argument src is a pointer to the kernel address the data
is transferred from. The argument dst is a pointer to the
kernel address the data is transferred to. If the
destination address is outside of kernel space, the system
panics. The value of cnt is the number of bytes to
transfer.
Do not use for moving data to user space; use copyin,
copyio, or copyout instead.
See Also
copyin(K), copyio(K), copyout(K)
(printed 7/6/89)