1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:37:35 +00:00

Kernel: Remove copy_string_from_user() as it's no longer used

This commit is contained in:
Andreas Kling 2021-08-14 23:02:48 +02:00
parent 0f6f863382
commit 96d5d017b7
3 changed files with 0 additions and 36 deletions

View file

@ -18,8 +18,6 @@ namespace Syscall {
struct StringArgument;
}
[[nodiscard]] String copy_string_from_user(const char*, size_t);
[[nodiscard]] String copy_string_from_user(Userspace<const char*>, size_t);
[[nodiscard]] Kernel::KResultOr<NonnullOwnPtr<Kernel::KString>> try_copy_kstring_from_user(Userspace<const char*>, size_t);
[[nodiscard]] Optional<Time> copy_time_from_user(const timespec*);
[[nodiscard]] Optional<Time> copy_time_from_user(const timeval*);