copyout()
FreeBSD for AMD64中函数的定义在哪里?
( http://www.unix.com/man-page/FreeBSD/9/copyout/ )
我唯一能找到的地方是在sys/sys/systm.h
。
定义/声明是:
int copyout(const void * __restrict kaddr, void * __restrict udaddr,
size_t len) __nonnull(1) __nonnull(2);
是声明还是定义?是什么__nonnull(1)
意思__nonnull(2)
?