NAME VOP_READLINK - read the target of a symbolic link CONTENTS Synopsis Description Locks Return Values Pseudocode Errors See Also Authors SYNOPSIS .In sys/param.h .In sys/vnode.h .In sys/uio.h int VOP_READLINK "struct vnode *vp" "struct uio *uio" "struct ucred *cred" DESCRIPTION This reads the target pathname of a symbolic link
/* * Read the target of the symlink. */ ...;
return error; } ERRORS