summaryrefslogtreecommitdiff
path: root/Kernel/Process.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-12-25 14:48:30 +0100
committerAndreas Kling <kling@serenityos.org>2020-12-25 14:48:30 +0100
commit40e9edd79811c7cf23aafbf8b1a85db3355a3176 (patch)
treedae72747fbf14f7d400e099732a66f695296ee95 /Kernel/Process.h
parent6c9a6bea1ec050d37280c32e3a8521f215a4d46e (diff)
downloadserenity-40e9edd79811c7cf23aafbf8b1a85db3355a3176.zip
LibELF: Move AuxiliaryValue into the ELF namespace
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r--Kernel/Process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h
index dd454358c1..dc3210ff6c 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -534,7 +534,7 @@ private:
ssize_t do_write(FileDescription&, const UserOrKernelBuffer&, size_t);
KResultOr<NonnullRefPtr<FileDescription>> find_elf_interpreter_for_executable(const String& path, char (&first_page)[PAGE_SIZE], int nread, size_t file_size);
- Vector<AuxiliaryValue> generate_auxiliary_vector() const;
+ Vector<ELF::AuxiliaryValue> generate_auxiliary_vector() const;
int alloc_fd(int first_candidate_fd = 0);
void disown_all_shared_buffers();