/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Kernel { ErrorOr Process::sys$lseek(int fd, Userspace userspace_offset, int whence) { VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this) TRY(require_promise(Pledge::stdio)); auto description = TRY(open_file_description(fd)); off_t offset; TRY(copy_from_user(&offset, userspace_offset)); auto seek_result = TRY(description->seek(offset, whence)); TRY(copy_to_user(userspace_offset, &seek_result)); return 0; } }