mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:17:34 +00:00
Kernel: Plumb KResult through FileDescription::read_entire_file() implementation.
Allow file system implementation to return meaningful error codes to callers of the FileDescription::read_entire_file(). This allows both Process::sys$readlink() and Process::sys$module_load() to return more detailed errors to the user.
This commit is contained in:
parent
c459e4ecb2
commit
6a74af8063
14 changed files with 54 additions and 36 deletions
|
@ -79,7 +79,7 @@ public:
|
|||
|
||||
ssize_t get_dir_entries(u8* buffer, ssize_t);
|
||||
|
||||
ByteBuffer read_entire_file();
|
||||
KResultOr<ByteBuffer> read_entire_file();
|
||||
|
||||
String absolute_path() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue