pub fn sys_vfs_create_symlink(trapframe: &mut Trapframe) -> usizeExpand description
Create a symbolic link (VfsCreateSymlink)
This system call creates a symbolic link at the specified path pointing to the target.
§Arguments
trapframe.get_arg(0)- Pointer to symlink path (where to create the symlink)trapframe.get_arg(1)- Pointer to target path (what the symlink points to)
§Returns
0on successusize::MAXon error (path already exists, permission denied, etc.)